Skip to content

Commit b4696fd

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 59c80b7 commit b4696fd

13 files changed

+32
-32
lines changed

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
key: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-${{ github.sha }}
4141
restore-keys: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-
4242

43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444
- uses: haskell-actions/setup@v2
4545
with:
4646
ghc-version: ${{ matrix.ghc }}

.github/workflows/changelogs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "$HOME/.local/bin" >> $GITHUB_PATH
3030
3131
- name: Checkout cabal sources
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- name: Run changelog-d
3535
run: |

.github/workflows/check-sdist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
ghc-version: ${{ matrix.ghc }}
4141
cabal-version: latest
4242

43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444

4545
- name: Make sdist
4646
run: cabal sdist cabal-install

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
validate:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- uses: marocchino/validate-dependabot@v3
1717
id: validate

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fourmolu:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: haskell-actions/run-fourmolu@v11
1414
with:
1515
version: "0.12.0.0"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
hlint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: haskell-actions/hlint-setup@v2
1313
with:
1414
version: "3.10"

.github/workflows/quick-jobs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
cabal --version
4242
- name: Update Hackage index
4343
run: cabal v2-update
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- name: Generate build plan for correct cache key
4646
run: ${{ env.cabal_build }} --dry-run
4747
- name: Restore cached dependencies
@@ -99,7 +99,7 @@ jobs:
9999
restore-keys: linux-store-doctest
100100
- name: Update Hackage index
101101
run: cabal v2-update
102-
- uses: actions/checkout@v4
102+
- uses: actions/checkout@v5
103103
- name: Install doctest
104104
run: make doctest-install
105105
- name: Doctest
@@ -129,7 +129,7 @@ jobs:
129129
cabal --version
130130
- name: Update Hackage index
131131
run: cabal v2-update
132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133
- name: Generate build plan for correct cache key
134134
run: ${{ env.cabal_build }} --dry-run
135135
- name: Restore cached dependencies
@@ -166,7 +166,7 @@ jobs:
166166
cabal --version
167167
- name: Update Hackage Index
168168
run: cabal v2-update
169-
- uses: actions/checkout@v4
169+
- uses: actions/checkout@v5
170170
- name: Check Release with Pinned Hackage
171171
run: cabal build all --dry-run --project-file=cabal.release.project
172172
- name: Check Release with Latest Hackage

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
6060
steps:
6161
- name: Checkout code
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363

6464
- name: Download artifacts
6565
uses: actions/download-artifact@v4

.github/workflows/reusable-release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
with:
169169
cabal: ${{ env.CABAL_VERSION }}
170170

171-
- uses: actions/checkout@v4
171+
- uses: actions/checkout@v5
172172
with:
173173
ref: ${{ matrix.branch }}
174174

@@ -207,7 +207,7 @@ jobs:
207207
ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
208208

209209
steps:
210-
- uses: actions/checkout@v4
210+
- uses: actions/checkout@v5
211211
with:
212212
ref: ${{ matrix.branch }}
213213

@@ -248,7 +248,7 @@ jobs:
248248
}
249249
]
250250
steps:
251-
- uses: actions/checkout@v4
251+
- uses: actions/checkout@v5
252252
with:
253253
ref: ${{ matrix.branch }}
254254

@@ -297,7 +297,7 @@ jobs:
297297
matrix:
298298
branch: ${{ fromJSON(inputs.branches) }}
299299
steps:
300-
- uses: actions/checkout@v4
300+
- uses: actions/checkout@v5
301301
with:
302302
ref: ${{ matrix.branch }}
303303

@@ -337,7 +337,7 @@ jobs:
337337
matrix:
338338
branch: ${{ fromJSON(inputs.branches) }}
339339
steps:
340-
- uses: actions/checkout@v4
340+
- uses: actions/checkout@v5
341341
with:
342342
ref: ${{ matrix.branch }}
343343

@@ -376,7 +376,7 @@ jobs:
376376
matrix:
377377
branch: ${{ fromJSON(inputs.branches) }}
378378
steps:
379-
- uses: actions/checkout@v4
379+
- uses: actions/checkout@v5
380380
with:
381381
ref: ${{ matrix.branch }}
382382

@@ -430,7 +430,7 @@ jobs:
430430
matrix:
431431
branch: ${{ fromJSON(inputs.branches) }}
432432
steps:
433-
- uses: actions/checkout@v4
433+
- uses: actions/checkout@v5
434434
with:
435435
ref: ${{ matrix.branch }}
436436

@@ -551,7 +551,7 @@ jobs:
551551
run: |
552552
${{ matrix.platform.installCmd }} curl bash git ${{ matrix.platform.toolRequirements }}
553553
554-
- uses: actions/checkout@v4
554+
- uses: actions/checkout@v5
555555
with:
556556
ref: ${{ matrix.branch }}
557557

@@ -596,7 +596,7 @@ jobs:
596596
# matrix:
597597
# branch: ${{ fromJSON(inputs.branches) }}
598598
# steps:
599-
# - uses: actions/checkout@v4
599+
# - uses: actions/checkout@v5
600600
# with:
601601
# ref: ${{ matrix.branch }}
602602
#
@@ -633,7 +633,7 @@ jobs:
633633
}
634634
]
635635
steps:
636-
- uses: actions/checkout@v4
636+
- uses: actions/checkout@v5
637637
with:
638638
ref: ${{ matrix.branch }}
639639

@@ -677,7 +677,7 @@ jobs:
677677
matrix:
678678
branch: ${{ fromJSON(inputs.branches) }}
679679
steps:
680-
- uses: actions/checkout@v4
680+
- uses: actions/checkout@v5
681681
with:
682682
ref: ${{ matrix.branch }}
683683

@@ -718,7 +718,7 @@ jobs:
718718
matrix:
719719
branch: ${{ fromJSON(inputs.branches) }}
720720
steps:
721-
- uses: actions/checkout@v4
721+
- uses: actions/checkout@v5
722722
with:
723723
ref: ${{ matrix.branch }}
724724

@@ -754,7 +754,7 @@ jobs:
754754
matrix:
755755
branch: ${{ fromJSON(inputs.branches) }}
756756
steps:
757-
- uses: actions/checkout@v4
757+
- uses: actions/checkout@v5
758758
with:
759759
ref: ${{ matrix.branch }}
760760

@@ -803,7 +803,7 @@ jobs:
803803
matrix:
804804
branch: ${{ fromJSON(inputs.branches) }}
805805
steps:
806-
- uses: actions/checkout@v4
806+
- uses: actions/checkout@v5
807807
with:
808808
ref: ${{ matrix.branch }}
809809

.github/workflows/typos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020

21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- run: |
2424
wget -q https://github.com/crate-ci/typos/releases/download/${{ env.TYPOS_VER }}/typos-${{ env.TYPOS_VER }}-${{ env.TYPOS_PLATFORM }}.tar.gz

0 commit comments

Comments
 (0)