Skip to content

Commit

Permalink
chore: pin ubuntu version in Github CI (#2313)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixpalmer authored Jan 9, 2025
1 parent 9342fc2 commit 219a550
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
check_branch:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
outputs:
should_build: ${{ steps.permitted.outputs.result }}

Expand All @@ -30,7 +30,7 @@ jobs:
echo "result=${result}" >> "$GITHUB_OUTPUT"
release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: check_branch
permissions:
contents: write
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
check_branch:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
outputs:
should_deploy: ${{ endsWith(github.ref, steps.get_version.outputs.latest) }}

Expand All @@ -23,7 +23,7 @@ jobs:
echo "latest=${LATEST}-release" >> "$GITHUB_OUTPUT"
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: check_branch

permissions:
Expand Down

0 comments on commit 219a550

Please sign in to comment.