From 293f194c9bc3d61faac238f78e058ff89a2c0ef7 Mon Sep 17 00:00:00 2001 From: JuditKaramazov Date: Sun, 6 Oct 2024 18:02:40 +0200 Subject: [PATCH] fix: Update artifact actions (v3) to resolve deprecation warning --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d849ca..e0e2ffe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - run: npm ci - run: npm test - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: coverage path: coverage/ @@ -38,7 +38,7 @@ jobs: if: ${{ success() && github.actor != 'dependabot[bot]' }} steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: coverage