diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-11-09 09:16:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 09:16:42 +0100 |
commit | 25d2316e8f53273191ac28ae554e3bef2c483598 (patch) | |
tree | d5d0b32568488d6f83cc86b26a1fe1a3e0977cdc | |
parent | 7a71621b7c43d7d2f264cc495fb7ceb66455fd3c (diff) | |
parent | 732dd904280c60f64744aed9df51908ce000016b (diff) |
Merge pull request #5520 from NixOS/dependabot/github_actions/actions/checkout-2.4.0
Bump actions/checkout from 2.3.5 to 2.4.0
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cdf6ddb67..492ee5388 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 60 steps: - - uses: actions/checkout@v2.3.5 + - uses: actions/checkout@v2.4.0 with: fetch-depth: 0 - uses: cachix/install-nix-action@v14.1 @@ -46,7 +46,7 @@ jobs: outputs: installerURL: ${{ steps.prepare-installer.outputs.installerURL }} steps: - - uses: actions/checkout@v2.3.5 + - uses: actions/checkout@v2.4.0 with: fetch-depth: 0 - run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV @@ -67,7 +67,7 @@ jobs: os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2.3.5 + - uses: actions/checkout@v2.4.0 - run: echo CACHIX_NAME="$(echo $GITHUB_REPOSITORY-install-tests | tr "[A-Z]/" "[a-z]-")" >> $GITHUB_ENV - uses: cachix/install-nix-action@v14.1 with: |