From b6dbd8739cdb01092713b3909ab6ea494f3e03f1 Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Wed, 19 Feb 2025 14:42:22 +0100 Subject: [PATCH] use ubuntu-latest for analysis and codeql Not sure if there are still valid reasons to use 24.04 Basically testing if github actions run in the PR and then may merge Using ubuntu-latest would allow that the self-hosted runners can be used instead to only use the ones from github. This should speed up the checks... Signed-off-by: Marcel Hibbe --- .github/workflows/analysis.yml | 2 +- .github/workflows/codeql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 951a1a2e4..2a1668266 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -24,7 +24,7 @@ concurrency: jobs: analysis: - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest steps: - name: Setup variables id: get-vars diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 48093b455..efc50ba58 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,7 +22,7 @@ permissions: jobs: analyze: name: Analyze - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest permissions: actions: read contents: read