From 7a21164708797b131c85416e29dfdacd9e924d24 Mon Sep 17 00:00:00 2001 From: Ry Jones Date: Wed, 8 Jan 2025 13:36:51 -0800 Subject: [PATCH] chore: update actions 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 --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cf493802f..3b284da83 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -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 @@ -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 }}