Skip to content

Commit

Permalink
ci: stop pinning to a specific NixOS version
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Dec 10, 2024
1 parent 9e0a3a9 commit dae11d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
check:
name: Quality Check
runs-on: nixos-24.05
runs-on: nixos
outputs:
matrix: ${{ steps.plan.outputs.MATRIX }}
steps:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
include: ${{fromJSON(needs.check.outputs.matrix)}}
# Disable fail-fast for non-PR builds to ensure all outputs have a chance to be built.
fail-fast: ${{ github.event_name == 'pull_request' }}
runs-on: ${{ matrix.system == 'x86_64-darwin' && 'macos-13' || (matrix.system == 'aarch64-darwin' && 'macos-14' || 'nixos-24.05') }}
runs-on: ${{ matrix.system == 'x86_64-darwin' && 'macos-13' || (matrix.system == 'aarch64-darwin' && 'macos-14' || 'nixos') }}
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit dae11d2

Please sign in to comment.