diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79f6a2e..967e6a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: Install Nix uses: DeterminateSystems/determinate-nix-action@main - - uses: DeterminateSystems/flakehub-cache-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - name: Check shell scripts run: | nix develop --command shellcheck ./.github/workflows/cache-test.sh diff --git a/README.md b/README.md index 270a2df..56a5b69 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Use Magic Nix Cache, a totally free and zero-configuration binary cache for Nix In your workflow, add our [GitHub Action][action] after installing Nix, like this: ```yaml -- uses: DeterminateSystems/determinate-nix-action@main -- uses: DeterminateSystems/flakehub-cache-action@main +- uses: DeterminateSystems/nix-installer-action@main +- uses: DeterminateSystems/magic-nix-cache-action@main ``` See [Usage](#usage) for a detailed example. @@ -53,8 +53,8 @@ jobs: contents: "read" steps: - uses: actions/checkout@v4 - - uses: DeterminateSystems/determinate-nix-action@v3 - - uses: DeterminateSystems/flakehub-cache-action@main + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - uses: DeterminateSystems/flake-checker-action@main - name: Run `nix build` run: nix build . @@ -87,7 +87,7 @@ When you configure an upstream cache for the Magic Nix Cache, any store paths fe The default is `https://cache.nixos.org` but you can set a different upstream: ```yaml -- uses: DeterminateSystems/flakehub-cache-action@main +- uses: DeterminateSystems/magic-nix-cache-action@main with: upstream-cache: https://my-binary-cache.com ```