Skip to content

Commit

Permalink
Explicitly specify ubuntu version (#400)
Browse files Browse the repository at this point in the history
Github will soon be moving ubuntu-latest to 24.04. This patch explicitly
specifes 22.04 so that we can explicitly validate and upgrade rather
than potentially having our CI break randomly.
  • Loading branch information
boomanaiden154 authored Dec 18, 2024
1 parent 9297e42 commit 902809e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ on:

jobs:
LicenseCheck:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: ./check-license.sh
Envvars:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
version_matrix: ${{ steps.set-output.outputs.version_matrix }}
do_cache: ${{ steps.set-output.outputs.do_cache }}
Expand All @@ -38,7 +38,7 @@ jobs:
echo "version_matrix=$_ver" >> $GITHUB_OUTPUT
echo "do_cache=$_cache" >> $GITHUB_OUTPUT
Checks:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [Envvars]
strategy:
matrix:
Expand Down

0 comments on commit 902809e

Please sign in to comment.