Skip to content

Commit

Permalink
Fix Github action environment version
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Feb 20, 2022
1 parent 64500be commit ccb2759
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
SCCACHE_CACHE_SIZE: 200M
jobs:
cache-toolchains-posix:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Cache toolchains (Linux, OpenWrt, Android)
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- run: ./get-clang.sh
- run: EXTRA_FLAGS='target_os="android"' ./get-clang.sh
cache-toolchains-win:
runs-on: windows-latest
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Cache toolchains
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
unzip ninja-win.zip -d ~/bin
fi
cache-toolchains-mac:
runs-on: macos-latest
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
Expand All @@ -88,7 +88,7 @@ jobs:
- run: ./get-clang.sh
linux:
needs: cache-toolchains-posix
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
path: src/sha256sum.txt
android:
needs: cache-toolchains-posix
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
path: src/sha256sum.txt
win:
needs: cache-toolchains-win
runs-on: windows-latest
runs-on: windows-2019
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
path: src/sha256sum.txt
mac:
needs: cache-toolchains-mac
runs-on: macos-latest
runs-on: macos-11
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:
path: src/sha256sum.txt
openwrt:
needs: cache-toolchains-posix
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit ccb2759

Please sign in to comment.