Skip to content

Commit

Permalink
Update GitHub actions to Node.js 20 versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
hainesr committed Mar 1, 2024
1 parent 1c06454 commit 04376dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout rubyzip code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and set up ruby
uses: ruby/setup-ruby@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.os == 'windows' }}
steps:
- name: Checkout rubyzip code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and set up ruby
uses: ruby/setup-ruby@v1
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Coveralls
if: matrix.os == 'ubuntu' && !endsWith(matrix.ruby, 'head')
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
flag-name: ${{ matrix.ruby }}
Expand All @@ -53,7 +53,7 @@ jobs:
continue-on-error: true
steps:
- name: Checkout rubyzip code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and set up ruby
uses: ruby/setup-ruby@v1
Expand All @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit 04376dc

Please sign in to comment.