From 1750cdcd2a78b307f2538de4d53f4e47a1b63fbf Mon Sep 17 00:00:00 2001 From: Ogun Babacan Date: Tue, 4 Feb 2025 12:25:24 +0300 Subject: [PATCH] ci: update upload-artifact action to use master branch (#1012) --- .github/workflows/release.yml | 2 +- .github/workflows/verify.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 270fa1e3..b6c234b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: - name: Run build run: npm run build - name: Create build artifact - uses: actions/upload-artifact@master + uses: actions/upload-artifact@main with: name: build-output path: dist/ diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 64e49032..b5265edc 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -23,7 +23,7 @@ jobs: - name: Run tests run: npm run test - name: Create coverage artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@main if: always() with: name: test-coverage-report