Skip to content

Commit a2a374e

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 b51ed02 commit a2a374e

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
@@ -33,7 +33,7 @@ jobs:
3333
name: ${{ matrix.name }}
3434
runs-on: ${{ matrix.os }}
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Prepare Environment
3838
run: ${{ matrix.runs.prepare }}
3939
- 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)