Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
fail-fast: false # Keep running if one leg fails.
matrix:
k8s-version:
- v1.28.x
- v1.29.x
- v1.30.x
- v1.31.x

env:
KO_DOCKER_REPO: registry.local:5000/knative # registry setup by setup-kind
Expand All @@ -29,7 +29,7 @@
uses: Homebrew/actions/setup-homebrew@master

- name: Set up Go 1.21.x
uses: actions/setup-go@v3
uses: actions/setup-go@v4

Check failure on line 32 in .github/workflows/e2e.yaml

View workflow job for this annotation

GitHub Actions / style / suggester / github_actions

[actionlint] reported by reviewdog 🐶 the runner of "actions/setup-go@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/e2e.yaml:32:13: the runner of "actions/setup-go@v4" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
go-version: 1.21.x

Expand All @@ -40,7 +40,7 @@
run: brew install knative/client/kn

- name: Check out current repository code onto GOPATH
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup KinD
uses: chainguard-dev/actions/setup-kind@main
Expand Down
Loading