Skip to content

Commit

Permalink
chore: update actions
Browse files Browse the repository at this point in the history
actions/upload-artifact and actions/download-artifact have
been deprecated and need updated.

https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/

Signed-off-by: Ry Jones <[email protected]>
  • Loading branch information
ryjones committed Jan 9, 2025
1 parent c38976b commit 7a21164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
run: ./gradlew koverHtmlReport koverXmlReport

- name: "Upload coverage html"
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.0.0
with:
name: coverage-results-${{ matrix.os-type }}.zip
path: apollo/build/reports/kover/html
Expand All @@ -154,7 +154,7 @@ jobs:

- name: "Upload the build report"
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: "**/build/reports/"
name: report-${{ matrix.os-type }}

0 comments on commit 7a21164

Please sign in to comment.