Skip to content

Commit 3d7f2fa

Browse files
github-actions(deps): bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/setup-go` from 4 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b5ead2c commit 3d7f2fa

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/code-quality-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
test: [unit-test, controller-integration-test, validate-helm, check-licenses]
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: Set up Go
3131
uses: actions/setup-go@v6

.github/workflows/e2e-openshift.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5959

6060
- name: Check out repository
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
with:
6363
ref: ${{ steps.resolve_ref.outputs.ref }}
6464
fetch-depth: 0
@@ -72,7 +72,7 @@ jobs:
7272
uses: azure/setup-helm@v4.3.1
7373

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

163163
- name: Upload Test Artifacts
164164
if: always()
165-
uses: actions/upload-artifact@v4
165+
uses: actions/upload-artifact@v7
166166
with:
167167
name: openshift-e2e-artifacts
168168
path: artifacts

.github/workflows/e2e-tests.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
CLOUDSERVER_TAG: ${{ vars[matrix.github_varirable_name] }}
4949
steps:
5050
- name: Check out repository
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
ref: ${{ github.sha }}
5454
fetch-depth: 0
@@ -59,7 +59,7 @@ jobs:
5959
cluster_name: helm-test-cluster
6060

6161
- name: Set up Go
62-
uses: actions/setup-go@v4
62+
uses: actions/setup-go@v6
6363
with:
6464
go-version-file: "tests/e2e/go.mod"
6565
cache: true
@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Upload Test Artifacts
118118
if: always()
119-
uses: actions/upload-artifact@v4
119+
uses: actions/upload-artifact@v7
120120
with:
121121
name: e2e-test-artifacts-${{ matrix.ring_version }}
122122
path: artifacts
@@ -137,7 +137,7 @@ jobs:
137137
needs: dev-image
138138
steps:
139139
- name: Check out repository
140-
uses: actions/checkout@v5
140+
uses: actions/checkout@v6
141141
with:
142142
ref: ${{ github.sha }}
143143
fetch-depth: 0
@@ -200,7 +200,7 @@ jobs:
200200

201201
- name: Upload Test Artifacts
202202
if: always()
203-
uses: actions/upload-artifact@v4
203+
uses: actions/upload-artifact@v7
204204
with:
205205
name: taint-watcher-test-artifacts
206206
path: artifacts
@@ -215,7 +215,7 @@ jobs:
215215
timeout-minutes: 45
216216
steps:
217217
- name: Check out repository
218-
uses: actions/checkout@v5
218+
uses: actions/checkout@v6
219219
with:
220220
fetch-depth: 0
221221

@@ -253,7 +253,7 @@ jobs:
253253

254254
- name: Upload Test Artifacts
255255
if: always()
256-
uses: actions/upload-artifact@v4
256+
uses: actions/upload-artifact@v7
257257
with:
258258
name: s3-tls-verify-artifacts
259259
path: artifacts

.github/workflows/linting-and-formatting.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
test: [precommit, lint]
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Set up Go
2424
uses: actions/setup-go@v6
@@ -54,6 +54,6 @@ jobs:
5454

5555
- name: Run golangci-lint
5656
if: matrix.test == 'lint'
57-
uses: golangci/golangci-lint-action@v8
57+
uses: golangci/golangci-lint-action@v9
5858
with:
5959
version: v2.4.0

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: github-pages
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232

@@ -104,7 +104,7 @@ jobs:
104104
packages: write
105105
steps:
106106
- name: Check out repository
107-
uses: actions/checkout@v5
107+
uses: actions/checkout@v6
108108

109109
- name: Set up Helm
110110
uses: azure/setup-helm@v4.3.1
@@ -119,7 +119,7 @@ jobs:
119119
helm package ./charts/scality-mountpoint-s3-csi-driver --version ${{ inputs.tag }} --app-version ${{ inputs.tag }}
120120
121121
- name: Upload Helm Chart as Artifact
122-
uses: actions/upload-artifact@v4
122+
uses: actions/upload-artifact@v7
123123
with:
124124
name: helm-chart
125125
path: scality-mountpoint-s3-csi-driver-${{ inputs.tag }}.tgz
@@ -143,7 +143,7 @@ jobs:
143143
contents: write
144144
steps:
145145
- name: Check out repository
146-
uses: actions/checkout@v5
146+
uses: actions/checkout@v6
147147

148148
- name: Create GitHub Release
149149
uses: softprops/action-gh-release@v2

.github/workflows/upgrade-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
timeout-minutes: 45
2525
steps:
2626
- name: Check out repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030

@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Upload Test Artifacts
8989
if: always()
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v7
9191
with:
9292
name: v1-to-latest-upgrade-test-artifacts
9393
path: artifacts

0 commit comments

Comments
 (0)