diff --git a/README.md b/README.md index af60cab..abe49e3 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is a GitHub Action that will update your flake.lock file whenever it is run. -> NOTE: We hardcode the `install_url` to a relatively recent `nixUnstable` (`nix-2.5pre20211015_130284b` currently). If you need a newer version that includes a new feature or important bug fix, feel free to file an issue or send a PR bumping the `install_url` inside the [`action.yml`](action.yml)! +> **NOTE:** As of v3, this action will no longer automatically install Nix to the action runner. You **MUST** set up a Nix with flakes support enabled prior to running this action, or your workflow will not function as expected. ## Example @@ -21,7 +21,15 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + - name: Install Nix + uses: cachix/install-nix-action@v14 + with: + install_url: https://nixos-nix-install-tests.cachix.org/serve/vij683ly7sl95nnhb67bdjjfabclr85m/install + install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve' + extra_nix_config: | + experimental-features = nix-command flakes + access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} - name: Update flake.lock - uses: DeterminateSystems/update-flake-lock@v1 + uses: DeterminateSystems/update-flake-lock@v3 ``` diff --git a/action.yml b/action.yml index eff6930..6a1ef74 100644 --- a/action.yml +++ b/action.yml @@ -3,11 +3,6 @@ description: 'Update your flake.lock and send a PR' runs: using: "composite" steps: - - uses: cachix/install-nix-action@v14 - with: - install_url: https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211015_130284b/install - extra_nix_config: | - experimental-features = nix-command flakes - run: nix flake update --commit-lock-file shell: bash env: