From 6410a9695863c6790e106ac5547609f9a7f19c19 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Tue, 9 Apr 2024 23:47:04 -0500 Subject: [PATCH] fix(ci): attempt to fix permissions on toast updater --- .github/workflows/update-toast.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-toast.yml b/.github/workflows/update-toast.yml index 53185b5..e82ce1c 100644 --- a/.github/workflows/update-toast.yml +++ b/.github/workflows/update-toast.yml @@ -10,6 +10,9 @@ on: jobs: check_release: + permissions: + contents: write + pull-requests: write runs-on: ubuntu-latest steps: @@ -37,7 +40,7 @@ jobs: - name: Create pull request if: steps.latest_release.outputs.version != env.CURRENT_VERSION - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v6 with: commit-message: Update Litestar version to ${{ steps.latest_release.outputs.version }} title: Update Litestar version to ${{ steps.latest_release.outputs.version }}