diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5280724..7838c9a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Check Nixpkgs input - uses: DeterminateSystems/flake-checker-action@v4 + uses: DeterminateSystems/flake-checker-action@main with: fail-mode: true check-outdated: false # PRs shouldn't fail because main's nixpkgs is out of date - name: Install Nix uses: DeterminateSystems/nix-installer-action@main - - uses: DeterminateSystems/magic-nix-cache-action@v1 + - uses: DeterminateSystems/magic-nix-cache-action@main - name: Check rustfmt run: nix develop --command check-rustfmt - name: Check Spelling diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 07a7814..19b5340 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -6,13 +6,15 @@ on: jobs: lockfile: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - name: Checkout repository + - name: Checkout uses: actions/checkout@v3 - name: Install Nix uses: DeterminateSystems/nix-installer-action@main - with: - github-token: ${{ secrets.GITHUB_TOKEN }} + - name: Enable magic Nix cache + uses: DeterminateSystems/magic-nix-cache-action@main + - name: Check flake + uses: DeterminateSystems/flake-checker-action@main - name: Update flake.lock - uses: DeterminateSystems/update-flake-lock@v16 + uses: DeterminateSystems/update-flake-lock@main