Skip to content

Commit 2e5c638

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

File tree

13 files changed

+32
-32
lines changed

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@v5
43+
- uses: actions/checkout@v6
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@v5
32+
uses: actions/checkout@v6
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@v5
43+
- uses: actions/checkout@v6
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@v5
14+
- uses: actions/checkout@v6
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@v5
12+
- uses: actions/checkout@v6
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@v5
11+
- uses: actions/checkout@v6
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@v5
44+
- uses: actions/checkout@v6
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@v5
102+
- uses: actions/checkout@v6
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@v5
132+
- uses: actions/checkout@v6
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@v5
169+
- uses: actions/checkout@v6
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@v5
62+
uses: actions/checkout@v6
6363

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

.github/workflows/reusable-release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
with:
162162
cabal: ${{ env.CABAL_VERSION }}
163163

164-
- uses: actions/checkout@v5
164+
- uses: actions/checkout@v6
165165
with:
166166
ref: ${{ matrix.branch }}
167167

@@ -200,7 +200,7 @@ jobs:
200200
ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"
201201

202202
steps:
203-
- uses: actions/checkout@v5
203+
- uses: actions/checkout@v6
204204
with:
205205
ref: ${{ matrix.branch }}
206206

@@ -241,7 +241,7 @@ jobs:
241241
}
242242
]
243243
steps:
244-
- uses: actions/checkout@v5
244+
- uses: actions/checkout@v6
245245
with:
246246
ref: ${{ matrix.branch }}
247247

@@ -290,7 +290,7 @@ jobs:
290290
matrix:
291291
branch: ${{ fromJSON(inputs.branches) }}
292292
steps:
293-
- uses: actions/checkout@v5
293+
- uses: actions/checkout@v6
294294
with:
295295
ref: ${{ matrix.branch }}
296296

@@ -330,7 +330,7 @@ jobs:
330330
matrix:
331331
branch: ${{ fromJSON(inputs.branches) }}
332332
steps:
333-
- uses: actions/checkout@v5
333+
- uses: actions/checkout@v6
334334
with:
335335
ref: ${{ matrix.branch }}
336336

@@ -369,7 +369,7 @@ jobs:
369369
matrix:
370370
branch: ${{ fromJSON(inputs.branches) }}
371371
steps:
372-
- uses: actions/checkout@v5
372+
- uses: actions/checkout@v6
373373
with:
374374
ref: ${{ matrix.branch }}
375375

@@ -423,7 +423,7 @@ jobs:
423423
matrix:
424424
branch: ${{ fromJSON(inputs.branches) }}
425425
steps:
426-
- uses: actions/checkout@v5
426+
- uses: actions/checkout@v6
427427
with:
428428
ref: ${{ matrix.branch }}
429429

@@ -538,7 +538,7 @@ jobs:
538538
run: |
539539
${{ matrix.platform.installCmd }} curl bash git ${{ matrix.platform.toolRequirements }}
540540
541-
- uses: actions/checkout@v5
541+
- uses: actions/checkout@v6
542542
with:
543543
ref: ${{ matrix.branch }}
544544

@@ -583,7 +583,7 @@ jobs:
583583
# matrix:
584584
# branch: ${{ fromJSON(inputs.branches) }}
585585
# steps:
586-
# - uses: actions/checkout@v5
586+
# - uses: actions/checkout@v6
587587
# with:
588588
# ref: ${{ matrix.branch }}
589589
#
@@ -620,7 +620,7 @@ jobs:
620620
}
621621
]
622622
steps:
623-
- uses: actions/checkout@v5
623+
- uses: actions/checkout@v6
624624
with:
625625
ref: ${{ matrix.branch }}
626626

@@ -664,7 +664,7 @@ jobs:
664664
matrix:
665665
branch: ${{ fromJSON(inputs.branches) }}
666666
steps:
667-
- uses: actions/checkout@v5
667+
- uses: actions/checkout@v6
668668
with:
669669
ref: ${{ matrix.branch }}
670670

@@ -705,7 +705,7 @@ jobs:
705705
matrix:
706706
branch: ${{ fromJSON(inputs.branches) }}
707707
steps:
708-
- uses: actions/checkout@v5
708+
- uses: actions/checkout@v6
709709
with:
710710
ref: ${{ matrix.branch }}
711711

@@ -741,7 +741,7 @@ jobs:
741741
matrix:
742742
branch: ${{ fromJSON(inputs.branches) }}
743743
steps:
744-
- uses: actions/checkout@v5
744+
- uses: actions/checkout@v6
745745
with:
746746
ref: ${{ matrix.branch }}
747747

@@ -790,7 +790,7 @@ jobs:
790790
matrix:
791791
branch: ${{ fromJSON(inputs.branches) }}
792792
steps:
793-
- uses: actions/checkout@v5
793+
- uses: actions/checkout@v6
794794
with:
795795
ref: ${{ matrix.branch }}
796796

.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@v5
21+
- uses: actions/checkout@v6
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)