Skip to content

Commit

Permalink
Update GitHub workflow to use ubuntu-22.04 instead of ubuntu-latest (#…
Browse files Browse the repository at this point in the history
…130)

* Update GitHub workflow to use ubuntu-22.04 instead of ubuntu-latest

This change is made to avoid issues related to the ongoing Ubuntu upgrade in the CI workflow.

Signed-off-by: Tharun Kumar Merugu <[email protected]>
  • Loading branch information
quic-mtharu authored Jan 15, 2025
1 parent 7c4345e commit f160977
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_linux_gnu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Git checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

permissions:
# required for all workflows
Expand Down Expand Up @@ -70,4 +70,4 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
category: "/language:${{matrix.language}}"

0 comments on commit f160977

Please sign in to comment.