Skip to content

Commit

Permalink
Merge pull request coreos#418 from bgilbert/ci
Browse files Browse the repository at this point in the history
workflows: update Linux distro versions; update actions; add Go 1.20
  • Loading branch information
bgilbert authored Jun 1, 2023
2 parents d5623bf + 1ea583f commit 3e98c3a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ env:
jobs:
ditro-test:
name: "Distro test"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
baseimage: ['debian:stretch', 'ubuntu:18.04', 'ubuntu:20.04']
baseimage: ['debian:bullseye', 'ubuntu:20.04', 'ubuntu:22.04']
steps:
- run: sudo apt-get -qq update
- name: Install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v1
uses: actions/setup-go@v4
with:
go-version: ${{ env['GO_TOOLCHAIN'] }}
- name: Go build (source)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.17.x', '1.18.x', '1.19.x']
go: ['1.17.x', '1.18.x', '1.19.x', '1.20.x']
steps:
- run: sudo apt-get -qq update
- name: Install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Go fmt
Expand All @@ -45,7 +45,7 @@ jobs:
run: sudo apt-get install libsystemd-dev
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ env['ACTION_MINIMUM_TOOLCHAIN'] }}
- name: Go fmt
Expand Down

0 comments on commit 3e98c3a

Please sign in to comment.