Skip to content

Commit cc610f1

Browse files
authored
chore(deps): update actions/setup-go action to v5 (#2361)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v4.1.0` -> `v5.0.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v5.0.0`](https://github.com/actions/setup-go/releases/tag/v5.0.0) [Compare Source](https://github.com/actions/setup-go/compare/v4.1.0...v5.0.0) ##### What's Changed In scope of this release, we change Nodejs runtime from node16 to node20 ([https://github.com/actions/setup-go/pull/421](https://github.com/actions/setup-go/pull/421)). Moreover, we update some dependencies to the latest versions ([https://github.com/actions/setup-go/pull/445](https://github.com/actions/setup-go/pull/445)). Besides, this release contains such changes as: - Fix hosted tool cache usage on windows by [@&#8203;galargh](https://github.com/galargh) in [https://github.com/actions/setup-go/pull/411](https://github.com/actions/setup-go/pull/411) - Improve documentation regarding dependencies caching by [@&#8203;artemgavrilov](https://github.com/artemgavrilov) in [https://github.com/actions/setup-go/pull/417](https://github.com/actions/setup-go/pull/417) ##### New Contributors - [@&#8203;galargh](https://github.com/galargh) made their first contribution in [https://github.com/actions/setup-go/pull/411](https://github.com/actions/setup-go/pull/411) - [@&#8203;artemgavrilov](https://github.com/artemgavrilov) made their first contribution in [https://github.com/actions/setup-go/pull/417](https://github.com/actions/setup-go/pull/417) - [@&#8203;chenrui333](https://github.com/chenrui333) made their first contribution in [https://github.com/actions/setup-go/pull/421](https://github.com/actions/setup-go/pull/421) **Full Changelog**: actions/setup-go@v4...v5.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/parca-dev/parca-agent). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
2 parents 9b6b804 + 6151964 commit cc610f1

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6060

6161
- name: Set up Go
62-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
62+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
6363
with:
6464
go-version-file: .go-version
6565

@@ -98,7 +98,7 @@ jobs:
9898
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
9999

100100
- name: Set up Go
101-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
101+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
102102
with:
103103
go-version-file: .go-version
104104

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5151

5252
- name: Set up Go
53-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
53+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
5454
with:
5555
go-version-file: .go-version
5656

.github/workflows/container.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
fetch-depth: 0
7070

7171
- name: Set up Go
72-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
72+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
7373
with:
7474
go-version-file: .go-version
7575

@@ -128,7 +128,7 @@ jobs:
128128
echo "goreleaser_current_tag=`git describe --match 'v*' --tags`" >> $GITHUB_ENV
129129
130130
- name: Set up Go
131-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
131+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
132132
with:
133133
go-version-file: .go-version
134134

@@ -267,7 +267,7 @@ jobs:
267267
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
268268

269269
- name: Set up Go
270-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
270+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
271271
with:
272272
go-version-file: .go-version
273273

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5151

5252
- name: Set up Go
53-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
53+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
5454
with:
5555
go-version-file: .go-version
5656

.github/workflows/jsonnet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5151

5252
- name: Set up Go
53-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
53+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
5454
with:
5555
go-version-file: .go-version
5656

.github/workflows/pre-commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fetch-depth: 0
4545

4646
- name: Set up Go
47-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
47+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
4848
with:
4949
go-version-file: .go-version
5050
cache: false

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2727

2828
- name: Set up Go
29-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
29+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
3030
with:
3131
go-version-file: .go-version
3232

@@ -75,7 +75,7 @@ jobs:
7575
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
7676

7777
- name: Set up Go
78-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
78+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
7979
with:
8080
go-version-file: .go-version
8181

@@ -127,7 +127,7 @@ jobs:
127127
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
128128

129129
- name: Set up Go
130-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
130+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
131131
with:
132132
go-version-file: .go-version
133133

@@ -200,7 +200,7 @@ jobs:
200200
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
201201

202202
- name: Set up Go
203-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
203+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
204204
with:
205205
go-version-file: .go-version
206206

.github/workflows/snap.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
echo "goreleaser_current_tag=`git describe --match 'v*' --tags`" >> $GITHUB_ENV
110110
111111
- name: Set up Go
112-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
112+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
113113
with:
114114
go-version-file: .go-version
115115

0 commit comments

Comments
 (0)