Skip to content

Commit

Permalink
tests: update setup-go to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Jul 2, 2024
1 parent 2b32d52 commit 454214e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: '1.22'
stable: true
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: '1.22'
stable: true
Expand All @@ -56,15 +56,15 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install latest version of Kind
run: |
go build -o /usr/local/bin/kind sigs.k8s.io/kind
go get sigs.k8s.io/kind
- name: Create Kind cluster
run: |
PATH=/usr/local/bin/:$PATH kind create cluster --config .github/workflows/kind-config.yaml
kind create cluster --config .github/workflows/kind-config.yaml
- name: Run some sanity checks
# kubectl is already installed on the Github Ubuntu worker
run: |
Expand Down

0 comments on commit 454214e

Please sign in to comment.