From b3ca6a505d128b5bae388e03072f69c27aade157 Mon Sep 17 00:00:00 2001 From: wiese Date: Fri, 27 Jan 2023 11:44:47 +0100 Subject: [PATCH] ci: fix github's "set-output" deprecation warning Use a new version of upload-artifact and download-artifact to comply with github's deprecation. https://github.com/actions/upload-artifact/issues/351 https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ca4d79b..8579570 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -18,7 +18,7 @@ jobs: - name: Build run: yarn build - name: Back up build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: dist @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Download build artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: dist path: dist