diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aeb91ac..45e4923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: run: dotnet test PokManager.sln --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=test-results.trx" --collect:"XPlat Code Coverage" --results-directory ./TestResults - name: Upload test results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: test-results-${{ matrix.artifact-name }} @@ -74,7 +74,7 @@ jobs: retention-days: 30 - name: Upload coverage reports - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: coverage-${{ matrix.artifact-name }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ab09d52..1856978 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -92,7 +92,7 @@ jobs: fi - name: Upload vulnerability report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: vulnerability-report diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 89239d9..a1ebf4d 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -88,7 +88,7 @@ jobs: fi - name: Upload vulnerability report - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: vulnerability-check-report @@ -144,7 +144,7 @@ jobs: fi - name: Upload dependency diff - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: dependency-diff-report diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 050a1f5..cb00972 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: cd .. - name: Upload release artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: release-artifacts path: publish/*.tar.gz