Skip to content

Commit ff93f27

Browse files
build(deps): bump actions/setup-go from 2 to 3 (#2763)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2 to 3. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2...v3) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7c94fe3 commit ff93f27

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/post-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Install Go
15-
uses: actions/setup-go@v2
15+
uses: actions/setup-go@v3
1616
with:
1717
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
1818
go-version: 1.18

.github/workflows/pr-extra.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: actions/setup-go@v2
14+
- uses: actions/setup-go@v3
1515
with:
1616
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
1717
go-version: 1.18

.github/workflows/pr.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Install Go
17-
uses: actions/setup-go@v2
17+
uses: actions/setup-go@v3
1818
with:
1919
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
2020
go-version: ${{ env.GO_VERSION }}
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v3
3434
- name: Install Go
35-
uses: actions/setup-go@v2
35+
uses: actions/setup-go@v3
3636
with:
3737
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
3838
go-version: ${{ env.GO_VERSION }}
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
- uses: actions/checkout@v3
5252
- name: Install Go
53-
uses: actions/setup-go@v2
53+
uses: actions/setup-go@v3
5454
with:
5555
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
5656
go-version: ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
@@ -64,7 +64,7 @@ jobs:
6464
steps:
6565
- uses: actions/checkout@v3
6666
- name: Install Go
67-
uses: actions/setup-go@v2
67+
uses: actions/setup-go@v3
6868
with:
6969
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
7070
go-version: ${{ env.GO_VERSION }} # test only the latest go version to speed up CI
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- uses: actions/checkout@v3
8484
- name: Install Go
85-
uses: actions/setup-go@v2
85+
uses: actions/setup-go@v3
8686
with:
8787
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
8888
go-version: ${{ matrix.golang }}
@@ -106,7 +106,7 @@ jobs:
106106
- name: Unshallow
107107
run: git fetch --prune --unshallow
108108
- name: Install Go
109-
uses: actions/setup-go@v2
109+
uses: actions/setup-go@v3
110110
with:
111111
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
112112
go-version: ${{ env.GO_VERSION }}

.github/workflows/tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Install Go
15-
uses: actions/setup-go@v2
15+
uses: actions/setup-go@v3
1616
with:
1717
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
1818
go-version: 1.18
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v3
4040

4141
- name: Install Go
42-
uses: actions/setup-go@v2
42+
uses: actions/setup-go@v3
4343
with:
4444
# stable: 'false' # Keep this line to be able to use rc and beta version of Go (ex: 1.18.0-rc1).
4545
go-version: 1.18

0 commit comments

Comments
 (0)