diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-10-17 21:43:20 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-10-17 21:43:20 +0100 |
| commit | b61f48bcdad6a7d13259bb0c1dfe6c7564b357a1 (patch) | |
| tree | 33e8a55b0f75e180d00ff45d7374ad166f16ec5a | |
| parent | 4a9dcc66ac7be69031a19f6ece0be4642e1f3057 (diff) | |
build: bump CI runner action to latest
as the nix flake update must have broken
cachix/install-nix-action@v22
```
This version of Nixpkgs requires an implementation of Nix with the
following features:
- `builtins.nixVersion` reports at least 2.18
Your are evaluating with Nix 2.16.1, please upgrade:
```
| -rw-r--r-- | .github/workflows/clippy_rustfmt_test.yaml | 14 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/clippy_rustfmt_test.yaml b/.github/workflows/clippy_rustfmt_test.yaml index c22d187..3fe9976 100644 --- a/.github/workflows/clippy_rustfmt_test.yaml +++ b/.github/workflows/clippy_rustfmt_test.yaml | |||
| @@ -7,10 +7,10 @@ jobs: | |||
| 7 | runs-on: ubuntu-latest | 7 | runs-on: ubuntu-latest |
| 8 | timeout-minutes: 15 | 8 | timeout-minutes: 15 |
| 9 | steps: | 9 | steps: |
| 10 | - uses: actions/checkout@v3 | 10 | - uses: actions/checkout@v5 |
| 11 | - uses: cachix/install-nix-action@v22 | 11 | - uses: cachix/install-nix-action@v31 |
| 12 | with: | 12 | with: |
| 13 | nix_path: nixpkgs=channel:nixos-unstable | 13 | nix_path: nixpkgs=channel:nixos-unstable |
| 14 | - run: nix develop --command cargo clippy | 14 | - run: nix develop --command cargo clippy |
| 15 | - run: nix develop --command cargo fmt --all -- --check | 15 | - run: nix develop --command cargo fmt --all -- --check |
| 16 | - run: nix develop --command cargo test | 16 | - run: nix develop --command cargo test |
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3060b6..d311621 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml | |||
| @@ -57,7 +57,7 @@ jobs: | |||
| 57 | build-tool: cargo | 57 | build-tool: cargo |
| 58 | runs-on: ${{ matrix.os }} | 58 | runs-on: ${{ matrix.os }} |
| 59 | steps: | 59 | steps: |
| 60 | - uses: actions/checkout@v3 | 60 | - uses: actions/checkout@v5 |
| 61 | - uses: dtolnay/rust-toolchain@stable | 61 | - uses: dtolnay/rust-toolchain@stable |
| 62 | - name: Install cargo-zigbuild using Homebrew for macOS | 62 | - name: Install cargo-zigbuild using Homebrew for macOS |
| 63 | if: runner.os == 'macOS' && matrix.build-tool == 'cargo-zigbuild' | 63 | if: runner.os == 'macOS' && matrix.build-tool == 'cargo-zigbuild' |