Skip to content

Commit

Permalink
Bump Go actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
bigkevmcd committed Mar 25, 2024
1 parent 8d40174 commit 13e992b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.22

Expand All @@ -28,13 +28,13 @@ jobs:
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Go Build Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
Expand All @@ -49,7 +49,7 @@ jobs:
echo "::set-output name=goarch::$(go env GOARCH)"
- name: Kubebuilder Envtest
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.envtest-info.outputs.envtest-path }}
key: Envtest-cache-${{ steps.envtest-info.outputs.envtest-version }}-${{ steps.envtest-info.outputs.goos }}-${{ steps.envtest-info.outputs.goarch }}
Expand Down

0 comments on commit 13e992b

Please sign in to comment.