Skip to content

Commit 0c562c3

Browse files
committed
TEMP: Pin workflows to ubuntu-20.04 to work around missing ripemd160 issue.
1 parent 0799f2c commit 0c562c3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55

66
lint:
77
name: lint
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-20.04
99
steps:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-python@v1
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os:
29-
- ubuntu-latest
29+
- ubuntu-20.04
3030
- macos-latest
3131
- windows-latest
3232
runs-on: ${{ matrix.os }}
@@ -72,7 +72,7 @@ jobs:
7272
7373
tests-integration:
7474
name: "tests / integration"
75-
runs-on: ubuntu-latest
75+
runs-on: ubuntu-20.04
7676
strategy:
7777
matrix:
7878
test:
@@ -123,7 +123,7 @@ jobs:
123123
124124
coverage:
125125
needs: ["tests-unit", "tests-integration"]
126-
runs-on: ubuntu-latest
126+
runs-on: ubuntu-20.04
127127
steps:
128128
- name: finalize coverage report submission
129129
env:
@@ -184,7 +184,7 @@ jobs:
184184
name: "release"
185185
if: startsWith(github.ref, 'refs/tags/v')
186186
needs: ["build"]
187-
runs-on: ubuntu-latest
187+
runs-on: ubuntu-20.04
188188
steps:
189189
- uses: actions/checkout@v1
190190
- uses: actions/download-artifact@v2

0 commit comments

Comments
 (0)