Skip to content

Commit d8fc706

Browse files
Update dependencies for linting workflows
1 parent c6bbc94 commit d8fc706

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/lint.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ env:
1515
jobs:
1616
ruby:
1717
name: Check Ruby
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Install Ruby and gems
2323
uses: ruby/setup-ruby@v1
2424
with:
25-
ruby-version: "3.2"
25+
ruby-version: "3.4"
2626
bundler-cache: true
2727
- name: Lint Ruby files
2828
run: bin/rake lint:rb
@@ -34,29 +34,29 @@ jobs:
3434

3535
erb:
3636
name: Check ERB
37-
runs-on: ubuntu-22.04
37+
runs-on: ubuntu-24.04
3838
steps:
3939
- name: Checkout code
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
- name: Install Ruby and gems
4242
uses: ruby/setup-ruby@v1
4343
with:
44-
ruby-version: "3.2"
44+
ruby-version: "3.4"
4545
bundler-cache: true
4646
- name: Lint ERB files
4747
run: bin/rake lint:erb
4848

4949
javascript:
5050
name: Check JavaScript
51-
runs-on: ubuntu-22.04
51+
runs-on: ubuntu-24.04
5252
env:
5353
ESLINT_USE_FLAT_CONFIG: false
5454
steps:
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- name: Install Ruby and gems
5757
uses: ruby/setup-ruby@v1
5858
with:
59-
ruby-version: "3.2"
59+
ruby-version: "3.4"
6060
bundler-cache: true
6161
- name: Lint JS files
6262
run: bin/rake lint:js

0 commit comments

Comments
 (0)