Skip to content

Commit

Permalink
Merge pull request #235 from ffromani/fix-gh-actions-0.13
Browse files Browse the repository at this point in the history
[release-0.13] gh actions: update config
  • Loading branch information
ffromani authored Oct 24, 2023
2 parents 3e781f7 + b7c2330 commit 49e3ce5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:

jobs:
e2e-positive:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: checkout sources
uses: actions/checkout@v2
Expand All @@ -36,10 +36,10 @@ jobs:
- name: create K8S kind cluster
run: |
# kind is part of 20.04 image, see: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
# kind is part of 22.04 image, see: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
kind version
# see image listing in https://github.com/kubernetes-sigs/kind/releases/tag/v0.11.1
kind create cluster --config=hack/kind-config-e2e-positive.yaml --image kindest/node:v1.24.7@sha256:577c630ce8e509131eab1aea12c022190978dd2f745aac5eb1fe65c0807eb315
kind create cluster --config=hack/kind-config-e2e-positive.yaml --image kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
kubectl label node kind-worker node-role.kubernetes.io/worker=''
hack/wait-nodes-ready.sh
Expand All @@ -48,7 +48,7 @@ jobs:
_out/e2e.test -ginkgo.focus='\[PositiveFlow\]' -ginkgo.v
e2e-negative:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: checkout sources
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defaults:

jobs:
release:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: checkout sources
uses: actions/checkout@v2
Expand Down Expand Up @@ -48,10 +48,10 @@ jobs:
- name: create K8S kind cluster
run: |
# kind is part of 20.04 image, see: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
# kind is part of 22.04 image, see: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
kind version
# see image listing in https://github.com/kubernetes-sigs/kind/releases/tag/v0.11.1
kind create cluster --config=hack/kind-config-e2e-positive.yaml --image kindest/node:v1.24.7@sha256:577c630ce8e509131eab1aea12c022190978dd2f745aac5eb1fe65c0807eb315
kind create cluster --config=hack/kind-config-e2e-positive.yaml --image kindest/node:v1.25.11@sha256:227fa11ce74ea76a0474eeefb84cb75d8dad1b08638371ecf0e86259b35be0c8
kubectl label node kind-worker node-role.kubernetes.io/worker=''
- name: run E2E tests
Expand Down

0 comments on commit 49e3ce5

Please sign in to comment.