Skip to content

Commit 057d314

Browse files
authored
Merge pull request #879 from digitalisx/fix/runs-on-version
Fix: workflow `runs-on` version to `ubuntu-20.04`.
2 parents e67bac4 + 632fe0b commit 057d314

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
lint:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-20.04
88
steps:
99
- uses: actions/checkout@v2
1010
- uses: psf/black@stable

.github/workflows/build-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616

1717
build:
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-20.04
1919
strategy:
2020
matrix:
2121
python-version: ["3.7"]

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-20.04
2727
permissions:
2828
actions: read
2929
contents: read

0 commit comments

Comments
 (0)