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/code-quality-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
test: [unit-test, controller-integration-test, validate-helm, check-licenses]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ steps.resolve_ref.outputs.ref }}
fetch-depth: 0
Expand All @@ -72,7 +72,7 @@ jobs:
uses: azure/setup-helm@v4.3.1

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version-file: "tests/e2e/go.mod"
# Disable cache: E2E builds produce a ~16GB build cache whose upload
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:

- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: openshift-e2e-artifacts
path: artifacts
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
CLOUDSERVER_TAG: ${{ vars[matrix.github_varirable_name] }}
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand All @@ -59,7 +59,7 @@ jobs:
cluster_name: helm-test-cluster

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v6
with:
go-version-file: "tests/e2e/go.mod"
cache: true
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:

- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: e2e-test-artifacts-${{ matrix.ring_version }}
path: artifacts
Expand All @@ -137,7 +137,7 @@ jobs:
needs: dev-image
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:

- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: taint-watcher-test-artifacts
path: artifacts
Expand All @@ -215,7 +215,7 @@ jobs:
timeout-minutes: 45
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: s3-tls-verify-artifacts
path: artifacts
4 changes: 2 additions & 2 deletions .github/workflows/linting-and-formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test: [precommit, lint]
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -54,6 +54,6 @@ jobs:

- name: Run golangci-lint
if: matrix.test == 'lint'
uses: golangci/golangci-lint-action@v8
uses: golangci/golangci-lint-action@v9
with:
version: v2.4.0
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: github-pages
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
packages: write
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 @@ -119,7 +119,7 @@ jobs:
helm package ./charts/scality-mountpoint-s3-csi-driver --version ${{ inputs.tag }} --app-version ${{ inputs.tag }}

- name: Upload Helm Chart as Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: helm-chart
path: scality-mountpoint-s3-csi-driver-${{ inputs.tag }}.tgz
Expand All @@ -143,7 +143,7 @@ jobs:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
timeout-minutes: 45
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Upload Test Artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: v1-to-latest-upgrade-test-artifacts
path: artifacts
Expand Down
Loading