Skip to content

Commit 10c1a7e

Browse files
dependabot[bot]singholt
authored andcommitted
Bump actions/setup-go from 3 to 5 in /.github/workflows
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v3...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6533f88 commit 10c1a7e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/gomod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
exit 1
2727
fi
2828
echo "GO_VERSION=$go_version" >> $GITHUB_OUTPUT
29-
- uses: actions/setup-go@v3
29+
- uses: actions/setup-go@v5
3030
with:
3131
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
3232
- name: Run go mod tidy and go mod vendor in csidriver module

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
exit 1
2727
fi
2828
echo "GO_VERSION=$go_version" >> $GITHUB_OUTPUT
29-
- uses: actions/setup-go@v3
29+
- uses: actions/setup-go@v5
3030
with:
3131
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
3232
- name: make test

.github/workflows/static.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
exit 1
2525
fi
2626
echo "GO_VERSION=$go_version" >> $GITHUB_OUTPUT
27-
- uses: actions/setup-go@v3
27+
- uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
3030
- uses: actions/checkout@v3
@@ -59,7 +59,7 @@ jobs:
5959
exit 1
6060
fi
6161
echo "GO_VERSION=$go_version" >> $GITHUB_OUTPUT
62-
- uses: actions/setup-go@v3
62+
- uses: actions/setup-go@v5
6363
with:
6464
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
6565
- uses: actions/checkout@v3
@@ -94,7 +94,7 @@ jobs:
9494
exit 1
9595
fi
9696
echo "GO_VERSION=$go_version" >> $GITHUB_OUTPUT
97-
- uses: actions/setup-go@v3
97+
- uses: actions/setup-go@v5
9898
with:
9999
go-version: ${{ steps.get-go-version.outputs.GO_VERSION }}
100100
- uses: actions/checkout@v3

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
exit 1
2525
}
2626
Write-Output "GO_VERSION_WINDOWS=$go_version_win" >> $GITHUB_OUTPUT
27-
- uses: actions/setup-go@v3
27+
- uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ steps.get-go-version.outputs.GO_VERSION_WINDOWS }}
3030
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)