Skip to content

Commit

Permalink
Run workflows on Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Dec 5, 2024
1 parent 664aaee commit 01f3c4c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
danger:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
test:
name: Docker
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout source
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
os: ubuntu-22.04
os: ubuntu-24.04
ruby: '3.1'
jobs:
rubocop:
name: RuboCop
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -25,7 +25,7 @@ jobs:
run: bundle exec rubocop --format fuubar
erblint:
name: ERB Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:
run: bundle exec erb_lint .
eslint:
name: ESLint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -64,7 +64,7 @@ jobs:
run: bundle exec rails eslint
brakeman:
name: Brakeman
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -80,7 +80,7 @@ jobs:
env:
RAILS_ENV: test
name: Rails Annotate Models
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down

0 comments on commit 01f3c4c

Please sign in to comment.