Skip to content

Commit

Permalink
Bumps GitHub Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fulf committed Feb 24, 2024
1 parent eea1bed commit 5e58e48
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
os:
- ubuntu
- windows

# Tempfile behavior has changed on Ruby 3.1 such that tests
# fail with permission denied. Would welcome a PR with a fix.
exclude:
- ruby-version: '3.1'
- ruby-version: "3.1"
os: windows
- ruby-version: '3.2'
- ruby-version: "3.2"
os: windows

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
Expand All @@ -47,7 +47,7 @@ jobs:
bundle exec rspec
- name: Code coverage reporting
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
flag-name: ruby${{ matrix.ruby-version }}-${{ matrix.os }}
Expand All @@ -59,7 +59,7 @@ jobs:

steps:
- name: Finalize code coverage report
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit 5e58e48

Please sign in to comment.