Skip to content

Commit

Permalink
Merge pull request #28 from serokell/update-checkout-action
Browse files Browse the repository at this point in the history
[Chore] Update "actions/checkout"
  • Loading branch information
rvem authored Dec 15, 2023
2 parents 7a4ef82 + 26fa79f commit 2162cdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions haskell.nix/application/.github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
validate:
runs-on: [self-hosted, nix]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: xrefcheck
run: nix run github:serokell/xrefcheck
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
build:
runs-on: [self-hosted, nix]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: build-all
run: nix build -L .#checks.x86_64-linux.build-all --keep-going
Expand All @@ -51,7 +51,7 @@ jobs:
runs-on: [self-hosted, nix]
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: test
run: nix build -L .#checks.x86_64-linux.test
6 changes: 3 additions & 3 deletions haskell.nix/library/.github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
validate:
runs-on: [self-hosted, nix]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: xrefcheck
run: nix run github:serokell/xrefcheck
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- id: set-matrix
run: echo "matrix=$(nix eval --json .#build-matrix.x86_64-linux)" >> $GITHUB_OUTPUT
Expand All @@ -64,7 +64,7 @@ jobs:
matrix: ${{fromJson(needs.check-prefixes.outputs.matrix)}}

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

- name: build
run: nix build -L .#checks.x86_64-linux.${{ matrix.prefix }}:build-all --keep-going
Expand Down

0 comments on commit 2162cdf

Please sign in to comment.