Skip to content

Commit e4a3f54

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 e0ca27e commit e4a3f54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
outputs:
2424
strategy: ${{ steps.generate-jobs.outputs.strategy }}
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- uses: docker-library/bashbrew@HEAD
2828
- id: generate-jobs
2929
name: Generate Jobs
@@ -46,7 +46,7 @@ jobs:
4646
name: ${{ matrix.name }}
4747
runs-on: ${{ matrix.os }}
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- name: Prepare Environment
5151
run: ${{ matrix.runs.prepare }}
5252
- name: Pull Dependencies

‎.github/workflows/verify-templating.yml

+1-1
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@v2
16+
- uses: actions/checkout@v4
1717
- name: Apply Templates
1818
run: ./apply-templates.sh
1919
- name: Check Git Status

0 commit comments

Comments
 (0)