Skip to content

Commit 726c65d

Browse files
authored
Merge pull request #148 from Ayesh/chore/actions-checkout-v5
chore: update GitHub Actions workflows to `actions/checkout@v5` #0000
2 parents 5066c66 + db8605b commit 726c65d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

templates/.github/workflows/10-review.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Don't enforce commit conventions checks for Dependabot
1313
if: github.actor != 'dependabot[bot]'
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
# interesting alternative: https://github.com/cocogitto/cocogitto
1818
- uses: webiny/action-conventional-commits@v1.3.0
@@ -36,7 +36,7 @@ jobs:
3636
code-quality:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- name: latest repo-ansible/reviewdog container
4141
run: docker pull ghcr.io/linkorb/repo-ansible/reviewdog:latest
4242
- name: run reviewdog checks

templates/.github/workflows/30-release-and-build.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

templates/.github/workflows/auto-run-repo-ansible.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- if: ${{ env.IS_PULL_REQUEST == '0' }}
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- if: ${{ env.IS_PULL_REQUEST == '1' }}
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
ref: refs/pull/${{ github.event.pull_request.number }}/merge
3838

0 commit comments

Comments
 (0)