Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4 (#524)
Browse files Browse the repository at this point in the history
* Bump actions/upload-artifact from 3 to 4

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump actions/download-artifact from 3 to 4

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Set correct artifact name

* Set specific download path

* Fix report glob

Enable debug

Fix glob pattern

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrejs Cunskis <[email protected]>
  • Loading branch information
dependabot[bot] and andrcuns authored Dec 20, 2023
1 parent ca9c2f6 commit 1d65ebc
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
coverageCommand: bundle exec rake test:coverage
coverageLocations: coverage/coverage.json:simplecov
- name: Upload report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: allure-results
path: "*/reports/allure-results/*"
name: allure-results-${{ matrix.ruby }}-oj-${{ matrix.oj }}
path: "*/reports/allure-results/"
retention-days: 1

report:
Expand All @@ -65,9 +65,7 @@ jobs:
if: always()
steps:
- name: Download allure-results
uses: actions/download-artifact@v3
with:
name: allure-results
uses: actions/download-artifact@v4
- name: Publish allure report
uses: andrcuns/[email protected]
env:
Expand All @@ -76,11 +74,12 @@ jobs:
ALLURE_JOB_NAME: rspec
with:
storageType: gcs
resultsGlob: "*/reports/allure-results"
resultsGlob: "**/allure-results"
bucket: allure-test-reports
prefix: allure-ruby/$GITHUB_REF
updatePr: description
summary: behaviors
copyLatest: true
ignoreMissingResults: false
summaryTableType: ascii
debug: true

0 comments on commit 1d65ebc

Please sign in to comment.