Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
trusted-public-keys: ${{ vars.TRUSTED_PUBLIC_KEYS }}
substituters: ${{ vars.SUBSTITUTERS }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Build and test the `mcl` command
run: nix develop -c sh -c "dub test --root packages/mcl -- -e 'fetchJson|(coda\.)|nix.run|nix.build'"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reusable-flake-checks-ci-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ${{ fromJSON(inputs.runner) }}
steps:
- name: 'Post initial package status comment'
uses: marocchino/[email protected].3
uses: marocchino/[email protected].4
with:
recreate: true
message: |
Expand All @@ -56,7 +56,7 @@ jobs:
nix-gitlab-token: ${{ secrets.NIX_GITLAB_TOKEN }}
nix-gitlab-domain: ${{ vars.NIX_GITLAB_DOMAIN }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Generate Matrix for Matrix
id: generate-matrix
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
nix-gitlab-token: ${{ secrets.NIX_GITLAB_TOKEN }}
nix-gitlab-domain: ${{ vars.NIX_GITLAB_DOMAIN }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Generate CI Matrix
id: generate-matrix
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}
fullMatrix: ${{ steps.matrix.outputs.fullMatrix }}
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
- name: Merge matrices
run: |
# Check if jq is installed
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
continue-on-error: ${{ matrix.allowedToFail }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Nix
uses: metacraft-labs/nixos-modules/.github/install-nix@main
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
&& contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')

- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: inputs.run-cachix-deploy

- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
lint:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Nix
uses: metacraft-labs/nixos-modules/.github/install-nix@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-update-flake-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
pull-request-number: ${{ steps.create-pr.outputs.pull-request-number }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Nix
uses: metacraft-labs/nixos-modules/.github/install-nix@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-update-flake-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ${{ fromJSON(inputs.runner) }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install Nix
uses: metacraft-labs/nixos-modules/.github/install-nix@main
Expand Down
Loading