From 04376dc2bc41e06bfa1dab943f991e332b403554 Mon Sep 17 00:00:00 2001 From: Robert Haines Date: Fri, 1 Mar 2024 22:28:41 +0000 Subject: [PATCH] Update GitHub actions to Node.js 20 versions. --- .github/workflows/lint.yml | 2 +- .github/workflows/tests.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0ba0e48..b777aaa 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 46117a0..024cdd7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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 }} @@ -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 @@ -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