Skip to content

Commit de921aa

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 7d73de9 commit de921aa

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
@@ -28,7 +28,7 @@ jobs:
2828
outputs:
2929
strategy: ${{ steps.generate-jobs.outputs.strategy }}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- uses: docker-library/bashbrew@HEAD
3333
- id: generate-jobs
3434
name: Generate Jobs
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
BASHBREW_ARCH: amd64 # TODO consider using "$BASHBREW_SCRIPTS/bashbrew-host-arch.sh" ? (would make it harder to force i386 in our matrix too, so explicit is probably better)
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
- uses: docker-library/bashbrew@HEAD # build.sh needs bashbrew
5555
- name: Prepare Environment
5656
run: ${{ matrix.runs.prepare }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Check For Uncomitted Changes
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Apply Templates
2020
run: ./apply-templates.sh
2121
- name: Check Git Status

0 commit comments

Comments
Β (0)