From 3c47f4d87918ae54d75dfc1975f979504747abf0 Mon Sep 17 00:00:00 2001 From: dvonthenen Date: Wed, 18 Sep 2024 12:51:21 -0700 Subject: [PATCH] Fix actions/upload-artifact Deprecation v2 -> v3 --- .github/workflows/CD-dev.yml | 2 +- .github/workflows/CD.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CD-dev.yml b/.github/workflows/CD-dev.yml index 5cd1e6d3..38d7ff1c 100644 --- a/.github/workflows/CD-dev.yml +++ b/.github/workflows/CD-dev.yml @@ -36,7 +36,7 @@ jobs: run: | dotnet pack Deepgram.DevBuild.sln --configuration Release --no-restore --output ./dist -p:Version=${{ steps.get_version.outputs.VERSION }} - name: Archive build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: dist diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index f6b66278..914188b4 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -33,7 +33,7 @@ jobs: run: | dotnet pack Deepgram.sln --configuration Release --no-restore --output ./dist -p:Version=${{ steps.get_version.outputs.VERSION }} - name: Archive build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: dist path: dist