diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 3a895fd..43bdc05 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -12,13 +12,13 @@ jobs: - name: "Checkout Codebase" uses: "actions/checkout@v4" - - name: "Install nix" - uses: "cachix/install-nix-action@v25" + - name: "Install Nix" + uses: "cachix/install-nix-action@v27" with: nix_path: "nixpkgs=channel:nixos-24.05" - - name: "Use magic Nix cache" - uses: "DeterminateSystems/magic-nix-cache-action@v3" + - name: "Use Magic Nix Cache" + uses: "DeterminateSystems/magic-nix-cache-action@v7" - name: "Check Application" run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9441750..66adc04 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: steps: - id: "release" name: "Release" - uses: "google-github-actions/release-please-action@v4" + uses: "googleapis/release-please-action@v4" - name: "Checkout Codebase" if: "${{ steps.release.outputs.release_created }}" @@ -24,18 +24,18 @@ jobs: with: fetch-depth: 0 - - name: "Install nix" + - name: "Install Nix" if: "${{ steps.release.outputs.release_created }}" - uses: "cachix/install-nix-action@v25" + uses: "cachix/install-nix-action@v27" with: nix_path: "nixpkgs=channel:nixos-24.05" extra_nix_config: "system-features = benchmark, big-parallel, nixos-test, uid-range, kvm" - - name: "Use magic Nix cache" + - name: "Use Magic Nix Cache" if: "${{ steps.release.outputs.release_created }}" uses: "DeterminateSystems/magic-nix-cache-action@v3" - - name: "Check Application" + - name: "Build Application" if: "${{ steps.release.outputs.release_created }}" run: | nix-shell --run "bash build-static.sh"