mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 18:43:34 +00:00
Merge pull request #190 from ceph/devel
Sync the upstream changes from ceph/ceph-csi:devel into the devel branch.
This commit is contained in:
1
.github/dependabot.yml
vendored
1
.github/dependabot.yml
vendored
@ -13,6 +13,7 @@ updates:
|
||||
golang-dependencies:
|
||||
patterns:
|
||||
- "github.com/golang*"
|
||||
- "golang.org/x/*"
|
||||
k8s-dependencies:
|
||||
patterns:
|
||||
- "k8s.io*"
|
||||
|
2
.github/workflows/build-multi-stage.yaml
vendored
2
.github/workflows/build-multi-stage.yaml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
name: multi-arch-build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: multi-arch-build
|
||||
# yamllint disable-line rule:line-length
|
||||
if: ${{ ! contains(github.event.pull_request.labels.*.name, 'ci/skip/multi-arch-build') }}
|
||||
|
2
.github/workflows/codespell.yaml
vendored
2
.github/workflows/codespell.yaml
vendored
@ -15,6 +15,6 @@ jobs:
|
||||
name: codespell
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: codespell
|
||||
run: make containerized-test TARGET=codespell
|
||||
|
2
.github/workflows/commitlint.yaml
vendored
2
.github/workflows/commitlint.yaml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
- name: commitlint
|
||||
|
2
.github/workflows/dependency-review.yaml
vendored
2
.github/workflows/dependency-review.yaml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: 'Checkout Repository'
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: 'Dependency Review'
|
||||
uses: actions/dependency-review-action@v3
|
||||
with:
|
||||
|
4
.github/workflows/go-test.yaml
vendored
4
.github/workflows/go-test.yaml
vendored
@ -13,13 +13,13 @@ jobs:
|
||||
name: go-test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: go-test
|
||||
run: make containerized-test TARGET=go-test
|
||||
go-test-api:
|
||||
name: go-test-api
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: go-test-api
|
||||
run: make containerized-test TARGET=go-test-api
|
||||
|
2
.github/workflows/golangci-lint.yaml
vendored
2
.github/workflows/golangci-lint.yaml
vendored
@ -13,6 +13,6 @@ jobs:
|
||||
name: golangci-lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: golangci-lint
|
||||
run: make containerized-test TARGET=go-lint
|
||||
|
2
.github/workflows/lint-extras.yaml
vendored
2
.github/workflows/lint-extras.yaml
vendored
@ -13,6 +13,6 @@ jobs:
|
||||
name: lint-extras
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: lint-extras
|
||||
run: make containerized-test TARGET=lint-extras
|
||||
|
2
.github/workflows/mod-check.yaml
vendored
2
.github/workflows/mod-check.yaml
vendored
@ -13,6 +13,6 @@ jobs:
|
||||
name: mod-check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- name: mod-check
|
||||
run: make containerized-test TARGET=mod-check
|
||||
|
4
.github/workflows/publish-artifacts.yaml
vendored
4
.github/workflows/publish-artifacts.yaml
vendored
@ -18,10 +18,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'ceph/ceph-csi'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Quay
|
||||
uses: docker/login-action@v2
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: quay.io
|
||||
username: ${{ secrets.QUAY_IO_USERNAME }}
|
||||
|
2
.github/workflows/test-retest-action.yaml
vendored
2
.github/workflows/test-retest-action.yaml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Docker build
|
||||
# Run cd to avoid loading complete cephcsi directory in docker context
|
||||
|
Reference in New Issue
Block a user