Skip to content

Commit

Permalink
Update GitHub Actions to Latest Versions
Browse files Browse the repository at this point in the history
- Update actions/checkout to v4
- Update actions/setup-go to v5
- Update golangci-lint-action to v5
- Update setup-kubectl to v4

Signed-off-by: Adam Kaplan <[email protected]>
  • Loading branch information
adambkaplan committed May 3, 2024
1 parent b1b9260 commit 82efd4b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.21.x
cache: true
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Verify OLM bundle
run: make verify-bundle
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v5
with:
args: --timeout=10m
e2e:
Expand All @@ -65,15 +65,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.21.x
cache: true
check-latest: true
- name: Install kubectl
uses: azure/setup-kubectl@v3
uses: azure/setup-kubectl@v4
with:
version: ${{ matrix.kubernetes }}
- name: Deploy KinD Local Container Registry
Expand Down

0 comments on commit 82efd4b

Please sign in to comment.