Skip to content

Commit

Permalink
ci: update workflows to use Ubuntu 24.04 for all jobs (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainGod2 authored Dec 2, 2024
1 parent 6c75049 commit f5eca04
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
cd:
name: CD - Release Deployment
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
concurrency: cd-${{ github.ref }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
ci:
name: Python ${{ matrix.python-version }} CI
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
analyze:
name: CodeQL Analysis - Python
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
docker:
name: Build and Push Docker Image
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
stale:
name: Close Stale Issues and PRs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
issues: write
pull-requests: write
Expand Down

0 comments on commit f5eca04

Please sign in to comment.