Skip to content

Commit

Permalink
.github: pin ubuntu runners to 22.04
Browse files Browse the repository at this point in the history
Currently, we use ubuntu-latest runners which currently points to
ubuntu-20.04, but will point to ubuntu-22.04 soon [1]

[1] actions/runner-images#6399

In order to avoid future surprises and proactives check compatibility of
our workflows, pin the version to ubuntu-22.04 already.

Signed-off-by: Tobias Klauser <tobias@cilium.io>
  • Loading branch information
tklauser authored and michi-covalent committed Dec 12, 2022
1 parent a096ba8 commit dd8f7cc
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cli/.github/workflows/aks-azure-ipam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/aks-byocni.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/eks-tunnel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 60
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/externalworkloads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/gke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:

build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b

Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
installation-and-connectivity:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 40
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/loki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:

jobs:
push-to-loki:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Push to Loki
uses: michi-covalent/push-to-loki@v0.2.2
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/multicluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ env:
jobs:
installation-and-connectivity:
if: ${{ github.repository == 'cilium/cilium-cli' }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion cli/.github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
name: Create Release
if: github.repository == 'cilium/cilium-cli'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
Expand Down

0 comments on commit dd8f7cc

Please sign in to comment.