diff --git a/.github/workflows/cli-tool.yml b/.github/workflows/cli-tool.yml index 8c7c719752..1e96347312 100644 --- a/.github/workflows/cli-tool.yml +++ b/.github/workflows/cli-tool.yml @@ -52,7 +52,7 @@ jobs: run: dotnet pack --no-build -c Release /p:UseSourceLink=true src/CLI/ApiClientCodeGen.CLI/ApiClientCodeGen.CLI.csproj -p:PackageVersion="${{ env.VERSION }}" - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: CLI Tool path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bd22b295c4..88a4b09dea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: mv src/VSIX/ApiClientCodeGen.VSIX/bin/Release/ApiClientCodeGenerator.vsix ApiClientCodeGenerator-VS2019-${{ env.VERSION }}.vsix mv src/VSIX/ApiClientCodeGen.VSIX.Dev17/bin/Release/ApiClientCodeGenerator.vsix ApiClientCodeGenerator-VS2022-${{ env.VERSION }}.vsix - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Visual Studio Extension path: | @@ -76,7 +76,7 @@ jobs: run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_KEY }} -s ${{ env.NUGET_REPO_URL }} --no-symbols true continue-on-error: true - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: CLI Tool path: | @@ -107,7 +107,7 @@ jobs: run: mv *.mpack ApiClientCodeGenerator-VSMac2022-${{ env.VERSION }}.mpack working-directory: src - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Visual Studio for Mac Extension path: | diff --git a/.github/workflows/vsix.yml b/.github/workflows/vsix.yml index 17c72b9fc1..5af9bdda35 100644 --- a/.github/workflows/vsix.yml +++ b/.github/workflows/vsix.yml @@ -52,7 +52,7 @@ jobs: mv src/VSIX/ApiClientCodeGen.VSIX.Dev17/bin/Release/ApiClientCodeGenerator.vsix ApiClientCodeGenerator-VS2022-${{ env.VERSION }}.vsix - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Artifacts path: | diff --git a/.github/workflows/vsmac.yml b/.github/workflows/vsmac.yml index cd488d061b..df01e9e6ea 100644 --- a/.github/workflows/vsmac.yml +++ b/.github/workflows/vsmac.yml @@ -46,7 +46,7 @@ jobs: working-directory: src/VSMac/ApiClientCodeGen.VSMac/bin/Release/ - name: Publish binaries - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Binaries path: src/VSMac/ApiClientCodeGen.VSMac/bin/Release/VSMac-Binaries.zip @@ -56,7 +56,7 @@ jobs: working-directory: src - name: Publish artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Extension path: |