Skip to content

Commit

Permalink
ci: Switch to ubuntu 22.04 and go 1.21
Browse files Browse the repository at this point in the history
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
  • Loading branch information
saschagrunert committed Nov 16, 2023
1 parent bdf5efc commit 8cf5fc4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04] # TODO: pass linters on 'macos-10.15' and 'windows-2019'
os: [ubuntu-22.04] # TODO: pass linters on 'macos-10.15' and 'windows-2019'

steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Set env
Expand Down Expand Up @@ -65,13 +65,13 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-11] # TODO: make releases on 'linux-ppc64le' 'windows-2019'
os: [ubuntu-22.04, macos-11] # TODO: make releases on 'linux-ppc64le' 'windows-2019'
# Ref: https://github.com/uraimo/run-on-arch-action
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Set env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/containerd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Set env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Setup environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Set env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'
cache: false

- name: Set env
Expand Down

0 comments on commit 8cf5fc4

Please sign in to comment.