Skip to content

Commit 55fd5a1

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 f01103b commit 55fd5a1

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
@@ -34,7 +34,7 @@ jobs:
3434
name: ${{ matrix.name }}
3535
runs-on: ${{ matrix.os }}
3636
steps:
37-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3838
- name: Prepare Environment
3939
run: ${{ matrix.runs.prepare }}
4040
- 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: Apply Templates
1818
run: ./apply-templates.sh
1919
- name: Check Git Status

0 commit comments

Comments
 (0)