diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 8c68b7b..e5d2cd6 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -31,7 +31,7 @@ jobs: run: npm run docs:build - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: docs/.vitepress/dist # The directory where VitePress builds the docs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f2f817..cb8e11d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: run: npm run release -- --platform=${{ matrix.platform }} - name: Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 if: startsWith(github.ref, 'refs/tags/') with: files: release/${{ matrix.platform }}.google-workspace-extension.tar.gz diff --git a/.github/workflows/weekly-preview.yml b/.github/workflows/weekly-preview.yml index fa17192..410f068 100644 --- a/.github/workflows/weekly-preview.yml +++ b/.github/workflows/weekly-preview.yml @@ -23,7 +23,7 @@ jobs: contents: write steps: - name: Create Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ needs.prepare.outputs.tag_name }} name: Weekly Preview ${{ needs.prepare.outputs.tag_name }} @@ -69,7 +69,7 @@ jobs: run: npm run release -- --platform=${{ matrix.platform }} - name: Upload Release Assets - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ needs.prepare.outputs.tag_name }} files: release/${{ matrix.platform }}.google-workspace-extension.tar.gz