Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update github-actions to 4.18.0 #180

Merged
merged 3 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/oxid-esales/defaults/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ prepare_shop: &prepare_shop
xdebug: 'xdebug.max_nesting_level=1000'

# Space separated list of extra services to add
add_services: 'selenium-chrome'
add_services: 'selenium-chrome-126'

# This is the second part of the shop installation. It uses the cached
# shop from prepare_shop and generates its own cached object used in the
Expand Down
2 changes: 1 addition & 1 deletion .github/oxid-esales/defaults/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ prepare_shop: &prepare_shop
xdebug: 'xdebug.max_nesting_level=1000'

# Space separated list of extra services to add
add_services: 'selenium-chrome'
add_services: 'selenium-chrome-126'

# This is the second part of the shop installation. It uses the cached
# shop from prepare_shop and generates its own cached object used in the
Expand Down
2 changes: 1 addition & 1 deletion .github/oxid-esales/defaults/defaults_light.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ install_shop_with_modules:
xdebug: 'xdebug.max_nesting_level=1000'

# Space separated list of extra services to add
add_services: 'selenium-chrome'
add_services: 'selenium-chrome-126'

# Modifying source/source/config.inc.php
config:
Expand Down
2 changes: 1 addition & 1 deletion .github/oxid-esales/defaults/defaults_light.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ install_shop_with_modules:
xdebug: 'xdebug.max_nesting_level=1000'

# Space separated list of extra services to add
add_services: 'selenium-chrome'
add_services: 'selenium-chrome-126'

# Modifying source/source/config.inc.php
config:
Expand Down
5 changes: 4 additions & 1 deletion prepare_shop/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,10 @@ runs:
# prepare_shop: Fetch the compilation composer.json
${{ inputs.debug }}
mkdir -p source
curl -sSjkLo source/composer.json '${{ inputs.compilation_url }}'
curl -sSjkLo source/composer.json \
-H 'Authorization: Bearer ${{ inputs.enterprise_github_token }}' \
-H 'Accept: application/vnd.github.raw+json' \
'${{ inputs.compilation_url }}'

- name: Clone the shop (${{ inputs.git_shop_ref }})
if: ${{ inputs.compilation_url == '' && (inputs.github_event_name != 'pull_request' || ( github.repository != 'OXID-eSales/oxideshop_ce')) }}
Expand Down