Skip to content

Commit 03612ab

Browse files
Update actions/setup-go to v6.2.0 (#1906)
<!-- Before you open the request please review the following guidelines and tips to help it be more easily integrated: - Describe the scope of your change - i.e. what the change does. - Describe any known limitations with your change. - Please run any tests or examples that can exercise your modified code. Thank you for contributing! We will try to test and integrate the change as soon as we can, but be aware we have many GitHub repositories to manage and can't immediately respond to every request. There is no need to bump or check in on a pull request (it will clutter the discussion of the request). Also don't be worried if the request is closed or not integrated sometimes the priorities of Bitnami might not match the priorities of the pull request. Don't fret, the open source community thrives on forks and GitHub makes it easy to keep your changes in a forked repo. --> **Description of the change** <!-- Describe the scope of your change - i.e. what the change does. --> Extracted from #1876, these changes seem to be good to go already to me. This MR ensures the latest version of the Go setup GitHub action is used. **Benefits** <!-- What benefits will be realized by the code change? --> Be up-to-date. **Possible drawbacks** <!-- Describe any known limitations with your change --> **Applicable issues** <!-- Enter any applicable Issues here (You can reference an issue using #) --> - fixes # **Additional information** <!-- If there's anything else that's important and relevant to your pull request, mention that information here.--> --------- Signed-off-by: Jesper Noordsij <j.noordsij@sslleiden.nl> Signed-off-by: Alfredo Garcia <alfredo-ag.garcia@broadcom.com> Co-authored-by: Alfredo Garcia <alfredo-ag.garcia@broadcom.com>
1 parent 255d92b commit 03612ab

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
gosec: ["2.22.2"]
4343
steps:
4444
- name: Set up Go 1.x
45-
uses: actions/setup-go@v3.3.1
45+
uses: actions/setup-go@v6.3.0
4646
with:
4747
go-version: ${{ matrix.go }}
4848
id: go
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474

7575
- name: Set up Go 1.x
76-
uses: actions/setup-go@v3.3.1
76+
uses: actions/setup-go@v6.3.0
7777
with:
7878
go-version: ${{ matrix.go }}
7979
id: go
@@ -124,7 +124,7 @@ jobs:
124124
chmod +x ~/bin/kubecfg
125125
126126
- name: Set up Go 1.x
127-
uses: actions/setup-go@v3.3.1
127+
uses: actions/setup-go@v6.3.0
128128
with:
129129
go-version: ${{ needs.load-versions.outputs.go_version }}
130130
id: go
@@ -166,7 +166,7 @@ jobs:
166166
echo "CONTROLLER_IMAGE=$controller_registry/$controller_repository:$controller_tag" >> $GITHUB_ENV
167167
168168
- name: Set up Go 1.x
169-
uses: actions/setup-go@v3.3.1
169+
uses: actions/setup-go@v6.3.0
170170
with:
171171
go-version: ${{ needs.load-versions.outputs.go_version }}
172172
id: go
@@ -234,7 +234,7 @@ jobs:
234234
echo "CONTROLLER_IMAGE=$controller_registry/$controller_repository:$controller_tag" >> $GITHUB_ENV
235235
236236
- name: Set up Go 1.x
237-
uses: actions/setup-go@v3.3.1
237+
uses: actions/setup-go@v6.3.0
238238
with:
239239
go-version: ${{ needs.load-versions.outputs.go_version }}
240240
id: go

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
source $GITHUB_WORKSPACE/versions.env
2626
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV
2727
- name: Set up Go
28-
uses: actions/setup-go@v3.3.1
28+
uses: actions/setup-go@v6.3.0
2929
with:
3030
go-version: ${{ env.GO_VERSION }}
3131
- name: Setup kubecfg

0 commit comments

Comments
 (0)