Skip to content

Commit

Permalink
Use ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Sep 8, 2024
1 parent ce16501 commit 93e9d7e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
format:
name: Check formatting
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -27,7 +27,7 @@ jobs:
run: make format
lint:
name: Check for erroneous constructs
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -44,7 +44,7 @@ jobs:
run: make lint
links:
name: Check Markdown links
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
Expand All @@ -58,7 +58,7 @@ jobs:
make links
test:
name: Run tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -75,7 +75,7 @@ jobs:
run: make test
build:
name: Make pip packages
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [format, lint, test]
steps:
- name: Checkout the Git repository
Expand All @@ -94,7 +94,7 @@ jobs:
if-no-files-found: error
standalone:
name: Make Standalone
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [format, lint, test]
steps:
- name: Checkout the Git repository
Expand All @@ -115,7 +115,7 @@ jobs:
if-no-files-found: error
publish:
name: Publish to PyPi
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: [build, links]
if: github.repository == 'toltec-dev/build' && github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
permissions:
Expand Down

0 comments on commit 93e9d7e

Please sign in to comment.