From 32a6b37c8786cd9f6a5bdbb725b6f6ceb97f3605 Mon Sep 17 00:00:00 2001 From: William Grzybowski Date: Fri, 21 Aug 2020 14:26:10 -0300 Subject: [PATCH] Use ubuntu-latest for github workflow --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c6bfb15..c6cafd8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,12 +17,12 @@ jobs: strategy: matrix: include: - - os: ubuntu-18.04 + - os: ubuntu-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Install dependencies (ubuntu) - if: matrix.os == 'ubuntu-18.04' + if: matrix.os == 'ubuntu-latest' run: | sudo apt-get update && sudo apt-get install -y ${{ env.native_deps }}