Skip to content

Commit

Permalink
Set Ubuntu 22.04 as runner image for Github Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
adrg committed Dec 23, 2024
1 parent ff6057f commit c8a4e68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
analyze:
runs-on: ubuntu-latest
runs-on: 'ubuntu-22.04'

steps:
- name: Prerequisites
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
go: ['1.21']
os: [ubuntu-latest]
os: ['ubuntu-22.04']
runs-on: ${{ matrix.os }}
steps:
- name: Setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
go: ['1.21']
os: [ubuntu-latest]
os: ['ubuntu-22.04']
runs-on: ${{ matrix.os }}
steps:
- name: Setup
Expand Down

0 comments on commit c8a4e68

Please sign in to comment.