diff options
author | George Melikov <[email protected]> | 2022-10-11 22:59:06 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-10-12 15:18:19 -0700 |
commit | 4bbd7a0fbe6711a9987e6c3608a93fc6cecc206f (patch) | |
tree | 20605bd6c6584a42781be27c428dd830faf24b30 /.github/workflows | |
parent | a6ccb36b948efed0eeee4fcf99fe4b5fb81ae1d5 (diff) |
CI: bump actions/checkout to v3
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: George Melikov <[email protected]>
Closes #14018
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/checkstyle.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/zfs-tests-functional.yml | 2 | ||||
-rw-r--r-- | .github/workflows/zfs-tests-sanity.yml | 2 | ||||
-rw-r--r-- | .github/workflows/zloop.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index 8dafdcf07..d7aff6bd6 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -8,7 +8,7 @@ jobs: checkstyle: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - name: Install dependencies diff --git a/.github/workflows/zfs-tests-functional.yml b/.github/workflows/zfs-tests-functional.yml index 0273610af..71815a562 100644 --- a/.github/workflows/zfs-tests-functional.yml +++ b/.github/workflows/zfs-tests-functional.yml @@ -12,7 +12,7 @@ jobs: os: [18.04, 20.04] runs-on: ubuntu-${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - name: Reclaim disk space diff --git a/.github/workflows/zfs-tests-sanity.yml b/.github/workflows/zfs-tests-sanity.yml index 73606f909..3e0b0f62a 100644 --- a/.github/workflows/zfs-tests-sanity.yml +++ b/.github/workflows/zfs-tests-sanity.yml @@ -8,7 +8,7 @@ jobs: tests: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - name: Reclaim disk space diff --git a/.github/workflows/zloop.yml b/.github/workflows/zloop.yml index d49eeae16..1ec8bf480 100644 --- a/.github/workflows/zloop.yml +++ b/.github/workflows/zloop.yml @@ -10,7 +10,7 @@ jobs: env: TEST_DIR: /var/tmp/zloop steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} - name: Install dependencies |