Skip to content

Commit 602ebd9

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 af0abf3 commit 602ebd9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/patch-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
ghc-matrix: ${{ steps.set-ghc-versions.outputs.ghc-matrix }}
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- id: set-ghc-versions
2222
name: Extract from gen_ghc_bindist
2323
run: python .github/extract_from_ghc_bindist.py
@@ -34,7 +34,7 @@ jobs:
3434
ghc-version: ${{ fromJSON(needs.find-ghc-version.outputs.ghc-matrix) }}
3535
runs-on: ${{ matrix.os }}
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- name: Mount Bazel cache
3939
uses: actions/cache@v4
4040
with:

.github/workflows/prepare-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
exit 1
2525
fi
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
ref: master # only create releases from main branch
3030
- name: Read section from CHANGELOG.md

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
ref: release

.github/workflows/update-ghc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- '9.10'
2020
- '9.12'
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
ref: master
2525
- uses: cachix/install-nix-action@v31

.github/workflows/workflow.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Format & Lint
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: tweag/configure-bazel-remote-cache-auth@v0
2525
with:
2626
buildbuddy_api_key: ${{ secrets.BUILDBUDDY_API_KEY }}
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
NIX_SHELL_ARGS: --arg docTools false --argstr ghcVersion ${{ matrix.ghc }}
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868
- uses: ./.github/actions/free_disk_space_on_linux
6969
- name: Mount Bazel cache
7070
uses: actions/cache@v4
@@ -162,7 +162,7 @@ jobs:
162162
GHC_VERSION: ${{ matrix.ghc }}
163163
runs-on: ${{ matrix.os }}
164164
steps:
165-
- uses: actions/checkout@v4
165+
- uses: actions/checkout@v5
166166
- uses: ./.github/actions/free_disk_space_on_linux
167167
- name: Mount Bazel cache
168168
uses: actions/cache@v4
@@ -267,7 +267,7 @@ jobs:
267267
USE_BAZEL_VERSION: ${{ matrix.bazel }}
268268
runs-on: ${{ matrix.os }}
269269
steps:
270-
- uses: actions/checkout@v4
270+
- uses: actions/checkout@v5
271271
- uses: ./.github/actions/free_disk_space_on_linux
272272
- name: Mount Bazel cache
273273
uses: actions/cache@v4

0 commit comments

Comments
 (0)