Skip to content

Commit 2249acd

Browse files
committed
Squashed 'release-tools/' changes from 119a53c3c..de06a09a7
de06a09a7 Merge pull request #297 from andyzhangx/patch-11 fc719f31e fix: Update Go version from 1.25.8 to 1.25.9 c24a730ec Merge pull request #296 from jsafrane/pin-github-actions-sha 59b456b86 fix: pin github action to exact SHA 061f6eedc Merge pull request #295 from kubernetes-csi/security/update-trivy-action-v0.35.0 6c16f30b6 security: Update trivy-action to v0.35.0 git-subtree-dir: release-tools git-subtree-split: de06a09a7a68bc8da0a275094ade1f5ea7a1a995
1 parent 7f39db8 commit 2249acd

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
name: Check for spelling errors
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v6
12-
- uses: codespell-project/actions-codespell@master
11+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
12+
- uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2
1313
with:
1414
check_filenames: true
1515
skip: "*.png,*.jpg,*.svg,*.sum,./.git,./.github/workflows/codespell.yml,./prow.sh"

.github/workflows/trivy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1414

1515
- name: Get Go version
1616
id: go-version
@@ -19,7 +19,7 @@ jobs:
1919
echo "version=$GO_VERSION" >> $GITHUB_OUTPUT
2020
2121
- name: Run Trivy scanner for Go version vulnerabilities
22-
uses: aquasecurity/trivy-action@master
22+
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # v0.35.0
2323
with:
2424
image-ref: 'golang:${{ steps.go-version.outputs.version }}'
2525
format: 'table'

prow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ configvar CSI_PROW_BUILD_PLATFORMS "linux amd64 amd64; linux ppc64le ppc64le -pp
8686
# which is disabled with GOFLAGS=-mod=vendor).
8787
configvar GOFLAGS_VENDOR "$( [ -d vendor ] && echo '-mod=vendor' )" "Go flags for using the vendor directory"
8888

89-
configvar CSI_PROW_GO_VERSION_BUILD "1.25.8" "Go version for building the component" # depends on component's source code
89+
configvar CSI_PROW_GO_VERSION_BUILD "1.25.9" "Go version for building the component" # depends on component's source code
9090
configvar CSI_PROW_GO_VERSION_E2E "" "override Go version for building the Kubernetes E2E test suite" # normally doesn't need to be set, see install_e2e
9191
configvar CSI_PROW_GO_VERSION_SANITY "${CSI_PROW_GO_VERSION_BUILD}" "Go version for building the csi-sanity test suite" # depends on CSI_PROW_SANITY settings below
9292
configvar CSI_PROW_GO_VERSION_KIND "${CSI_PROW_GO_VERSION_BUILD}" "Go version for building 'kind'" # depends on CSI_PROW_KIND_VERSION below

0 commit comments

Comments
 (0)