Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: dependabot/fetch-metadata@v2

- name: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
lfs: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/helm-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Login to Registry
uses: docker/login-action@v3
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Restore Cached Docker Images
id: cache_docker_images
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/.docker_cache
key: docker-${{ runner.os }}-${{ matrix.ring_version }}-${{ env.CLOUDSERVER_IMAGE }}
Expand All @@ -60,7 +60,7 @@ jobs:
version: v3.16.3

- name: Create Kind Cluster
uses: helm/kind-action@v1.12.0
uses: helm/kind-action@v1.13.0
with:
version: v0.21.0
wait: 90s
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/kustomize-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Login to Registry
uses: docker/login-action@v3
Expand All @@ -46,7 +46,7 @@ jobs:

- name: Restore Cached Docker Images
id: cache_docker_images
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/.docker_cache
key: docker-${{ runner.os }}-${{ matrix.ring_version }}-${{ env.CLOUDSERVER_IMAGE }}
Expand All @@ -55,7 +55,7 @@ jobs:
docker-${{ runner.os }}-

- name: Create k8s KIND Cluster
uses: helm/kind-action@v1.12.0
uses: helm/kind-action@v1.13.0
with:
version: v0.21.0
wait: 90s
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
needs: [prod-container-with-docker, package-helm-chart]
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Helm
uses: azure/setup-helm@v4.3.1
Expand All @@ -61,7 +61,7 @@ jobs:
helm package ./helm/scality-cosi-driver --version ${{ inputs.tag }} --app-version ${{ inputs.tag }}

- name: Upload Helm Chart as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: helm-chart
path: scality-cosi-driver-${{ inputs.tag }}.tgz
Expand Down
Loading