From 3d1155ed72c1fba9d1fa6c46a48ce24218848a4b Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Wed, 12 Oct 2022 14:29:44 +0200 Subject: [PATCH] readme: don't perpetuate old versions (actually, `@v17` will still cause deprecation warnings, but I'll leave this for the upcoming release) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b9d4e886..6efae9cd 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,8 @@ jobs: tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 - - uses: cachix/install-nix-action@v15 + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v17 with: nix_path: nixpkgs=channel:nixos-unstable - run: nix-build @@ -52,8 +52,8 @@ jobs: tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 - - uses: cachix/install-nix-action@v15 + - uses: actions/checkout@v3 + - uses: cachix/install-nix-action@v17 with: extra_nix_config: | access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}