Skip to content

Commit

Permalink
Use newer ubuntu for GitHub Actions (it'll be the new default soon)
Browse files Browse the repository at this point in the history
  • Loading branch information
flosell committed Dec 30, 2024
1 parent 2e96250 commit 13bf729
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
analyse:
name: Analyse
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand All @@ -19,7 +19,7 @@ jobs:
- name: Build and Test
run: make test build
test-web:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: test
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
path: |
web/backstop_data/*
deploy-web:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: test-web
if: ${{ github.ref == 'refs/heads/master' }}
steps:
Expand All @@ -65,9 +65,9 @@ jobs:
- name: Deploy to GitHub Pages
run: make web-deploy
test-readme:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: test
steps:
- uses: actions/checkout@v4
- name: Test if readme is written well
run: make test-readme
run: make test-readme

0 comments on commit 13bf729

Please sign in to comment.