From 521e14d6d07ac97f081da0a315c91e5bc6602812 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Wed, 8 Jan 2025 06:19:16 +0100 Subject: [PATCH] workflows: Move release and node-modules workflows from Ubuntu 20.04 to 24.04 20.04 will soon be EOL. "ubuntu-latest" is 24.04 now with a newer podman. --- .github/workflows/dependabot.yml | 3 +-- .github/workflows/release.yml | 3 +-- .github/workflows/reposchutz.yml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml index eecf97fa73c1..94ef8f4de56c 100644 --- a/.github/workflows/dependabot.yml +++ b/.github/workflows/dependabot.yml @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7330bba294c..da26bb170e39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.github/workflows/reposchutz.yml b/.github/workflows/reposchutz.yml index 2f690007a49b..a064d901d77a 100644 --- a/.github/workflows/reposchutz.yml +++ b/.github/workflows/reposchutz.yml @@ -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