Skip to content

Commit 0770b96

Browse files
Bump actions/setup-go from 3.5.0 to 4.0.0 (#3651)
* Bump actions/setup-go from 3.5.0 to 4.0.0 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3.5.0 to 4.0.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@6edd440...4d34df0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Remove cache key as it's always enabled now --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luca Comellini <[email protected]>
1 parent 88864c3 commit 0770b96

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@ jobs:
4141
run: |
4242
echo "k8s_latest=$(grep -m1 'FROM kindest/node' <tests/docker/Dockerfile | awk -F'[:v]' '{print $3}')" >> $GITHUB_OUTPUT
4343
- name: Setup Golang Environment
44-
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
44+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
4545
with:
4646
go-version-file: go.mod
47-
cache: true
4847
- name: Determine GOPATH
4948
id: go
5049
run: echo "go_path=$(go env GOPATH)" >> $GITHUB_OUTPUT
@@ -68,10 +67,9 @@ jobs:
6867
- name: Checkout Repository
6968
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
7069
- name: Setup Golang Environment
71-
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
70+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
7271
with:
7372
go-version-file: go.mod
74-
cache: true
7573
- name: Run Tests
7674
run: make cover
7775
- name: Upload coverage to Codecov
@@ -96,10 +94,9 @@ jobs:
9694
fetch-depth: 0
9795

9896
- name: Setup Golang Environment
99-
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
97+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
10098
with:
10199
go-version-file: go.mod
102-
cache: true
103100

104101
- name: Download Syft
105102
uses: anchore/sbom-action/download-syft@07978da4bdb4faa726e52dfc6b1bed63d4b56479 # v0.13.3

.github/workflows/lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ jobs:
3030
- name: Checkout Repository
3131
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
3232
- name: Setup Golang Environment
33-
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
33+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
3434
with:
3535
go-version-file: go.mod
36-
cache: true
3736
- name: Lint Code
3837
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.0
3938
with:

.github/workflows/update-docker-images.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,9 @@ jobs:
9292
fetch-depth: 0
9393
ref: refs/tags/v${{ needs.variables.outputs.kic-tag }}
9494
- name: Setup Golang Environment
95-
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
95+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
9696
with:
9797
go-version-file: go.mod
98-
cache: true
9998
- name: Determine GOPATH
10099
id: go
101100
run: echo "go_path=$(go env GOPATH)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)