rebase: bump actions/checkout from 2 to 3

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2022-05-05 09:58:22 +00:00 committed by mergify[bot]
parent 194db3edd5
commit b1a0f42b31
9 changed files with 10 additions and 10 deletions

View File

@ -10,7 +10,7 @@ jobs:
name: multi-arch-build name: multi-arch-build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: multi-arch-build - name: multi-arch-build
# podman cannot pull images with both tag and digest # podman cannot pull images with both tag and digest
# https://github.com/containers/buildah/issues/1407 # https://github.com/containers/buildah/issues/1407

View File

@ -12,6 +12,6 @@ jobs:
name: codespell name: codespell
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: codespell - name: codespell
run: CONTAINER_CMD=docker make containerized-test TARGET=codespell run: CONTAINER_CMD=docker make containerized-test TARGET=codespell

View File

@ -11,7 +11,7 @@ jobs:
if: ${{ github.actor != 'dependabot[bot]' }} if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
ref: ${{ github.event.pull_request.head.sha }} ref: ${{ github.event.pull_request.head.sha }}
- name: commitlint - name: commitlint

View File

@ -10,13 +10,13 @@ jobs:
name: go-test name: go-test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: go-test - name: go-test
run: CONTAINER_CMD=docker make containerized-test TARGET=go-test run: CONTAINER_CMD=docker make containerized-test TARGET=go-test
go-test-api: go-test-api:
name: go-test-api name: go-test-api
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: go-test-api - name: go-test-api
run: CONTAINER_CMD=docker make containerized-test TARGET=go-test-api run: CONTAINER_CMD=docker make containerized-test TARGET=go-test-api

View File

@ -10,6 +10,6 @@ jobs:
name: golangci-lint name: golangci-lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: golangci-lint - name: golangci-lint
run: CONTAINER_CMD=docker make containerized-test TARGET=go-lint run: CONTAINER_CMD=docker make containerized-test TARGET=go-lint

View File

@ -10,6 +10,6 @@ jobs:
name: lint-extras name: lint-extras
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: lint-extras - name: lint-extras
run: CONTAINER_CMD=docker make containerized-test TARGET=lint-extras run: CONTAINER_CMD=docker make containerized-test TARGET=lint-extras

View File

@ -10,6 +10,6 @@ jobs:
name: mod-check name: mod-check
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: mod-check - name: mod-check
run: CONTAINER_CMD=docker make containerized-test TARGET=mod-check run: CONTAINER_CMD=docker make containerized-test TARGET=mod-check

View File

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.repository == 'ceph/ceph-csi' if: github.repository == 'ceph/ceph-csi'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Login to Quay - name: Login to Quay
uses: docker/login-action@v1 uses: docker/login-action@v1

View File

@ -9,7 +9,7 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Docker build - name: Docker build
# Run cd to avoid loading complete cephcsi directory in docker context # Run cd to avoid loading complete cephcsi directory in docker context