diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-10-28 00:53:08 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-10-28 00:53:08 -0400 |
commit | e6f9c0013b3c47d3785aa52a6cea201f67dd0fe6 (patch) | |
tree | d6ffcde85cbbecd47243ac9def98b7198e52f22d | |
parent | Merge pull request #8578 (diff) | |
parent | workflows: ubuntu 18.04 is deprecated (diff) | |
download | monero-e6f9c0013b3c47d3785aa52a6cea201f67dd0fe6.tar.xz |
Merge pull request #8594
d7445b5 workflows: ubuntu 18.04 is deprecated (selsta)
-rw-r--r-- | .github/workflows/build.yml | 6 | ||||
-rw-r--r-- | .github/workflows/depends.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b327374d..e66cd4cde 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: diff --git a/.github/workflows/depends.yml b/.github/workflows/depends.yml index 57e9e68bb..c05f74f9c 100644 --- a/.github/workflows/depends.yml +++ b/.github/workflows/depends.yml @@ -18,7 +18,7 @@ env: jobs: build-cross: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 env: CCACHE_TEMPDIR: /tmp/.ccache-temp strategy: |