From ea8adcfb06be36aec15fb894d5ea8728170bbe8e Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Tue, 10 Nov 2020 00:53:57 -0600 Subject: [PATCH] chore: bump create-pr-action to resolve deprecation (#1077) The set-env function in Github Actions has been deprecated which the previous version used. This update resolves the issue. --- .github/workflows/covector-version-or-publish.yml | 4 ++-- .github/workflows/update-docs.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index 5cd86ef0d..e731e064e 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -38,7 +38,7 @@ jobs: createRelease: true - name: Create Pull Request With Versions Bumped if: steps.covector.outputs.commandRan == 'version' - uses: tauri-apps/create-pull-request@v2.8.0 + uses: tauri-apps/create-pull-request@v3.4.1 with: token: ${{ secrets.GITHUB_TOKEN }} branch: release/version-updates @@ -81,7 +81,7 @@ jobs: git config --global user.name "${{ github.event.pusher.name }}" git config --global user.email "${{ github.event.pusher.email }}" - name: create pull request for updated docs - uses: tauri-apps/create-pull-request@v2.8.0 + uses: tauri-apps/create-pull-request@v3.4.1 with: token: ${{ secrets.TAURI_BOT_PAT }} commit-message: "chore(docs): Update Rust docs" diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index 6be6d2615..4d858926f 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -45,7 +45,7 @@ jobs: git config --global user.name "${{ github.event.inputs.gitName }}" git config --global user.email "${{ github.event.inputs.gitEmail }}" - name: create pull request for updated docs - uses: tauri-apps/create-pull-request@v2.8.0 + uses: tauri-apps/create-pull-request@v3.4.1 with: token: ${{ secrets.TAURI_BOT_PAT }} commit-message: "chore(docs): Update Rust docs"