From 782c3f884ac1083b7f192b143ea0643ff8afcb9a Mon Sep 17 00:00:00 2001 From: Toni Melisma <59022391+tonimelisma@users.noreply.github.com> Date: Mon, 7 Nov 2022 07:44:20 -0800 Subject: [PATCH] Bump CI to latest Ubuntu (#329) --- .github/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85de180d..75d3dfcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: CGO_CFLAGS_ALLOW: -Xpreprocessor strategy: matrix: - os: [ubuntu-20.04, macos-11] + os: [ubuntu-22.04, macos-11] steps: - name: Set up Go 1.x @@ -22,11 +22,8 @@ jobs: uses: actions/checkout@v2 - name: Install linux deps - if: matrix.os == 'ubuntu-20.04' + if: matrix.os == 'ubuntu-22.04' run: | - sudo add-apt-repository -y ppa:strukturag/libde265 - sudo add-apt-repository -y ppa:strukturag/libheif - sudo add-apt-repository -y ppa:tonimelisma/ppa sudo apt-get -y install libopenjp2-7 sudo apt-get -y install libvips-dev @@ -46,7 +43,7 @@ jobs: run: go test -v -coverprofile=profile.cov ./... - name: Coveralls - if: matrix.os == 'ubuntu-20.04' + if: matrix.os == 'ubuntu-22.04' uses: shogo82148/actions-goveralls@v1 with: path-to-profile: profile.cov