Skip to content

Commit

Permalink
Update github-actions to 4.18.0 (#180)
Browse files Browse the repository at this point in the history
* Pin selenium chome version to 236
* Fix github auth for compilation download
  • Loading branch information
release-github-action[bot] authored Aug 22, 2024
1 parent b1d23ae commit 07ef24f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
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

0 comments on commit 07ef24f

Please sign in to comment.