Skip to content

Commit

Permalink
[GitHub Actions] Update to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Jun 27, 2024
1 parent 4b35924 commit 0459950
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_hugo_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: 'Test Hugo Build [${{ matrix.version }}-${{ matrix.image }}]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Build with Hugo docker image
Expand Down Expand Up @@ -50,13 +50,13 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: master
path: master
persist-credentials: false
- name: Checkout gh-pages branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch_latest_release_info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
if: (github.event_name == 'repository_dispatch' && github.event.action == 'github_release_update') || github.event_name != 'repository_dispatch'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: master
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync_master_to_translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[Sync: translations->master]')"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: master
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: translation_integration
path: translation_integration
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: 'Update Data'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: master
persist-credentials: false
Expand Down

0 comments on commit 0459950

Please sign in to comment.