Skip to content

Commit b7771ee

Browse files
authored
new versions for github actions (#75)
Update the versions of some github actions to stop using the deprecated versions. HIdden files are now excluded by default so allowed them in the upload to get the `.last_run.json` needed included.
2 parents ba2ceab + 06f2128 commit b7771ee

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- name: Set up Ruby
2525
uses: ruby/setup-ruby@v1
2626
with:
@@ -32,18 +32,19 @@ jobs:
3232

3333
- name: Archive coverage
3434
if: ${{ success() || failure() }}
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: code-coverage-report-ruby_${{ matrix.ruby-version }}-${{ matrix.gemfile }}
3838
path: ${{ github.workspace }}/coverage/
39+
include-hidden-files: true
3940

4041
post_coverage:
4142
runs-on: ubuntu-latest
4243
needs: test
4344
permissions:
4445
pull-requests: write
4546
steps:
46-
- uses: actions/download-artifact@v3
47+
- uses: actions/download-artifact@v4
4748
with:
4849
name: code-coverage-report-ruby_3.2-rails_7.1
4950
path: coverage/

0 commit comments

Comments
 (0)