Skip to content

Commit 5ac0d88

Browse files
committed
Update to actions/checkout@v4 πŸ™ƒ
(this is effectively a functional no-op solving a "problem" that really ought to be solved at a different level within GHA)
1 parent d03e12d commit 5ac0d88

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
strategy: ${{ steps.generate-jobs.outputs.strategy }}
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- uses: docker-library/bashbrew@HEAD
2323
- id: generate-jobs
2424
name: Generate Jobs
@@ -37,7 +37,7 @@ jobs:
3737
name: ${{ matrix.name }}
3838
runs-on: ${{ matrix.os }}
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- name: Prepare Environment
4242
run: ${{ matrix.runs.prepare }}
4343
- name: Pull Dependencies

β€Ž.github/workflows/verify-templating.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Check For Uncomitted Changes
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Clean
1818
run: rm -rf */
1919
- name: Apply Templates

0 commit comments

Comments
Β (0)