Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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/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