Skip to content

Commit c5c9839

Browse files
chore(deps): Bump the gh-actions group across 1 directory with 3 updates
Bumps the gh-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [marocchino/sticky-pull-request-comment](https://github.com/marocchino/sticky-pull-request-comment) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `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) Updates `marocchino/sticky-pull-request-comment` from 2.9.3 to 2.9.4 - [Release notes](https://github.com/marocchino/sticky-pull-request-comment/releases) - [Commits](marocchino/sticky-pull-request-comment@v2.9.3...v2.9.4) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: marocchino/sticky-pull-request-comment dependency-version: 2.9.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9ae77e2 commit c5c9839

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
trusted-public-keys: ${{ vars.TRUSTED_PUBLIC_KEYS }}
3535
substituters: ${{ vars.SUBSTITUTERS }}
3636

37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

3939
- name: Build and test the `mcl` command
4040
run: nix develop -c sh -c "dub test --root packages/mcl -- -e 'fetchJson|(coda\.)|nix.run|nix.build'"

.github/workflows/reusable-flake-checks-ci-matrix.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ${{ fromJSON(inputs.runner) }}
3434
steps:
3535
- name: 'Post initial package status comment'
36-
uses: marocchino/[email protected].3
36+
uses: marocchino/[email protected].4
3737
with:
3838
recreate: true
3939
message: |
@@ -56,7 +56,7 @@ jobs:
5656
nix-gitlab-token: ${{ secrets.NIX_GITLAB_TOKEN }}
5757
nix-gitlab-domain: ${{ vars.NIX_GITLAB_DOMAIN }}
5858

59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
- name: Generate Matrix for Matrix
6262
id: generate-matrix
@@ -86,7 +86,7 @@ jobs:
8686
nix-gitlab-token: ${{ secrets.NIX_GITLAB_TOKEN }}
8787
nix-gitlab-domain: ${{ vars.NIX_GITLAB_DOMAIN }}
8888

89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v5
9090

9191
- name: Generate CI Matrix
9292
id: generate-matrix
@@ -115,7 +115,7 @@ jobs:
115115
matrix: ${{ steps.matrix.outputs.matrix }}
116116
fullMatrix: ${{ steps.matrix.outputs.fullMatrix }}
117117
steps:
118-
- uses: actions/download-artifact@v4
118+
- uses: actions/download-artifact@v5
119119
- name: Merge matrices
120120
run: |
121121
# Check if jq is installed
@@ -177,7 +177,7 @@ jobs:
177177
continue-on-error: ${{ matrix.allowedToFail }}
178178

179179
steps:
180-
- uses: actions/checkout@v4
180+
- uses: actions/checkout@v5
181181

182182
- name: Install Nix
183183
uses: metacraft-labs/nixos-modules/.github/install-nix@main
@@ -225,7 +225,7 @@ jobs:
225225
&& contains(needs.*.result, 'failure')
226226
|| contains(needs.*.result, 'cancelled')
227227
228-
- uses: actions/checkout@v4
228+
- uses: actions/checkout@v5
229229
if: inputs.run-cachix-deploy
230230

231231
- name: Deploy

.github/workflows/reusable-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
lint:
2626
runs-on: self-hosted
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929

3030
- name: Install Nix
3131
uses: metacraft-labs/nixos-modules/.github/install-nix@main

.github/workflows/reusable-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/reusable-update-flake-lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
pull-request-number: ${{ steps.create-pr.outputs.pull-request-number }}
5757

5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
- name: Install Nix
6262
uses: metacraft-labs/nixos-modules/.github/install-nix@main

.github/workflows/reusable-update-flake-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ${{ fromJSON(inputs.runner) }}
4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
- name: Install Nix
4545
uses: metacraft-labs/nixos-modules/.github/install-nix@main

0 commit comments

Comments
 (0)