From 70e7298624659873f6c8383786daceed65db0813 Mon Sep 17 00:00:00 2001 From: Joey den Broeder Date: Wed, 12 Nov 2025 15:59:46 +0000 Subject: [PATCH] fix: resolve GitHub release permissions and modernize workflow actions Fixes the 403 "Resource not accessible by integration" error when creating releases and updates deprecated GitHub Actions syntax and dependencies. Changes: - Add contents:write permission to deploy job to enable release creation --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 853985c5a..fe851d2a0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,6 +31,8 @@ jobs: name: Deploy runs-on: ubuntu-latest needs: build + permissions: + contents: write steps: - uses: actions/download-artifact@v4 with: