diff options
author | selsta <selsta@sent.at> | 2022-09-24 21:02:41 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2022-09-24 21:04:28 +0200 |
commit | d7445b576f992e9b5f5e07705f77e43d17939529 (patch) | |
tree | bf51253a0aedf15d940521e52f8b392863dbc1ee /.github/workflows/build.yml | |
parent | Merge pull request #8545 (diff) | |
download | monero-d7445b576f992e9b5f5e07705f77e43d17939529.tar.xz |
workflows: ubuntu 18.04 is deprecated
And will soon be removed.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccc4f56fc..0f81e45d4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: CCACHE_TEMPDIR: /tmp/.ccache-temp strategy: matrix: - os: [ubuntu-latest, ubuntu-18.04] + os: [ubuntu-22.04, ubuntu-20.04] steps: - uses: actions/checkout@v1 with: @@ -101,7 +101,7 @@ jobs: ${{env.BUILD_DEFAULT_LINUX}} libwallet-ubuntu: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: CCACHE_TEMPDIR: /tmp/.ccache-temp steps: @@ -129,7 +129,7 @@ jobs: test-ubuntu: needs: build-ubuntu - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: CCACHE_TEMPDIR: /tmp/.ccache-temp steps: |