Skip to content

Commit

Permalink
chore: update GitHub Actions container OS
Browse files Browse the repository at this point in the history
  • Loading branch information
dupuy committed Jan 7, 2025
1 parent 4c74882 commit 396112c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:

jobs:
assign-labels:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pull-requests: write

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ permissions:
jobs:
analyze:
name: 'Analyze'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
dependency-review:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: 'Harden runner'
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ossf-scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ permissions: read-all
jobs:
analysis:
name: 'Scorecard analysis'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ permissions:

jobs:
tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

outputs:
VERSION_TAG: ${{ steps.computed.outputs.VERSION_TAG }}
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
run: 'poetry run tox -e py'

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

# No build for push events, which use artifacts from pull_request
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
retention-days: 90 # stale + close + 13 <= artifact retention (90 max)

draft-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

# No draft for push; that uses artifact and draft release from pull_request.
if: >
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
updateOnlyUnreleased: true

test-publish:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: >
github.event_name == 'pull_request' &&
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2

publish:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: github.event_name == 'push' && github.repository == 'dupuy/reliabot'
env:
Expand Down Expand Up @@ -418,7 +418,7 @@ jobs:
uses: pypa/gh-action-pypi-publish@15c56dba361d8335944d31a2ecd17d700fc7bcbc # v1.12.2

pre-release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: github.event_name == 'push' && github.repository == 'dupuy/reliabot'
env:
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
updateOnlyUnreleased: true

release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

if: github.event_name == 'push' && github.repository == 'dupuy/reliabot'
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
stale:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
issues: write
pull-requests: write
Expand Down

0 comments on commit 396112c

Please sign in to comment.