Skip to content

Commit c1d8dc3

Browse files
authored
Merge pull request #43 from boherm/upgrade-github-actions
2 parents ba437f4 + b11f381 commit c1d8dc3

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/push_archives_to_bucket.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
# Initial checkout of the full repository to get the latest tag and change branch depending on the environment
3232
- name: Checkout TranslationTools app
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v5
3434
with:
3535
repository: PrestaShopCorp/TranslationTool
3636
fetch-depth: 0
@@ -74,19 +74,16 @@ jobs:
7474

7575
# Checkout repository TranslationFiles in var dir so that the command can use it with the appropriate branch
7676
- name: Checkout TranslationFiles in var dir
77-
uses: actions/checkout@v3
77+
uses: actions/checkout@v5
7878
with:
7979
path: var/TranslationFiles
8080
ref: ${{ steps.job-settings.outputs.TRANSLATION_FILES_BRANCH }}
8181

8282
# Depending on the environment a different credential key is used
8383
- name: 'Authenticate to Google Cloud'
84-
uses: 'google-github-actions/auth@v0'
84+
uses: 'google-github-actions/auth@v3'
8585
with:
8686
credentials_json: ${{ secrets.credentials_json }}
87-
create_credentials_file: true
88-
cleanup_credentials: true
89-
export_environment_variables: true
9087

9188
- name: Run push bucket command
9289
run: php bin/console prestashop:bucket:push-archives --prestashop-version=${{ inputs.prestashop_version }}

0 commit comments

Comments
 (0)