Skip to content

Commit

Permalink
workflows: Move release and node-modules workflows from Ubuntu 20.04 …
Browse files Browse the repository at this point in the history
…to 24.04

20.04 will soon be EOL. "ubuntu-latest" is 24.04 now with a newer
podman.
  • Loading branch information
martinpitt authored and mvollmer committed Jan 8, 2025
1 parent d596eea commit fa65923
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
contents: read
pull-requests: write
timeout-minutes: 5
# 22.04's podman has issues with piping and causes tar errors
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.labels.*.name, 'node_modules') }}

steps:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:

jobs:
source:
# 22.04's podman has issues with piping and causes tar errors
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
# create GitHub release
contents: write
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/reposchutz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ on:
jobs:
check:
name: Protection checks
# 22.04's podman has issues with piping and causes tar errors
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
Expand Down

0 comments on commit fa65923

Please sign in to comment.