Skip to content

Commit 9e18f73

Browse files
committed
chore: update checkout@v4
1 parent 910ab59 commit 9e18f73

File tree

2 files changed

+9
-22
lines changed

2 files changed

+9
-22
lines changed

.github/workflows/linter.yml

+2-15
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,18 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ruby: [ 2.7, 3.0 ]
10+
ruby: [ 2.7, "3.0" ]
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Setup Ruby
1717
uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: ${{ matrix.ruby }}
2020
bundler-cache: true
2121

22-
- name: Ruby gem cache
23-
uses: actions/cache@v1
24-
with:
25-
path: vendor/bundle
26-
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
27-
restore-keys: |
28-
${{ runner.os }}-gems-
29-
30-
- name: Install gems
31-
run: |
32-
bundle config path vendor/bundle
33-
bundle install --jobs 4 --retry 3
34-
3522
- name: Run linters
3623
run: |
3724
bundle exec rubocop --parallel

.github/workflows/tests.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
gemfile: [websocket-driver-0.6.x, websocket-driver-0.7.x]
15-
ruby: [2.7, 3.0, 3.1]
15+
ruby: [2.7, "3.0", 3.1, 3.2, 3.3]
1616
runs-on: ubuntu-latest
1717
env:
18-
FERRUM_PROCESS_TIMEOUT: 20
18+
FERRUM_PROCESS_TIMEOUT: 25
1919
FERRUM_DEFAULT_TIMEOUT: 15
2020
BUNDLE_GEMFILE: .github/gemfiles/${{ matrix.gemfile }}.gemfile
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Setup Ruby
2626
uses: ruby/setup-ruby@v1
@@ -33,13 +33,13 @@ jobs:
3333
with:
3434
chrome-version: stable
3535

36-
- run: mkdir -p /tmp/cuprite
37-
3836
- name: Run tests
39-
run: bundle exec rake
37+
run: |
38+
mkdir -p /tmp/cuprite
39+
bundle exec rake
4040
4141
- name: Archive artifacts
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
if: ${{ failure() }}
4444
with:
4545
name: footprints

0 commit comments

Comments
 (0)