Skip to content

Commit

Permalink
Update GitHub actions CI workflow
Browse files Browse the repository at this point in the history
Update actions runner OS image from Ubuntu 18.04 to Ubuntu 22.04.
Update actions/checkout and actions/setup-go packages from v2 to v3.

Signed-off-by: Austin Vazquez <macedonv@amazon.com>
  • Loading branch information
austinvazquez committed Nov 7, 2022
1 parent c72d87f commit 5d1f727
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:

build:
name: Btrfs CI
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.19.x
id: go
Expand All @@ -27,7 +27,7 @@ jobs:
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: src/github.com/containerd/btrfs
fetch-depth: 25
Expand All @@ -40,4 +40,5 @@ jobs:
- name: Build
working-directory: src/github.com/containerd/btrfs
run: |
sudo apt-get update && sudo apt-get install -y libbtrfs-dev
make vet binaries

0 comments on commit 5d1f727

Please # to comment.