Skip to content

Commit

Permalink
Pin the ubuntu image the GHA runs on due to missing tarballs
Browse files Browse the repository at this point in the history
Known issue of the `action/setup-python` action [0]. Workaround is
to pin the ubuntu image to a known working version [1]. This is
consistent with pinning most other packages anyway so don't think
this is much of an issue.

[0] actions/setup-python#544
[1] actions/setup-python#544 (comment)
  • Loading branch information
PacificGilly committed Mar 21, 2024
1 parent bd48579 commit 519bbe6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
max-parallel: 5
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 519bbe6

Please sign in to comment.