From 55a9e2c28b9663ccd0f1efa40dfa14f08f6f67a7 Mon Sep 17 00:00:00 2001 From: timbastin Date: Tue, 18 Jun 2024 15:42:06 +0200 Subject: [PATCH] adds actions write permission to release-charts action --- .github/workflows/release-charts.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-charts.yaml b/.github/workflows/release-charts.yaml index b45d368..3b54f9e 100644 --- a/.github/workflows/release-charts.yaml +++ b/.github/workflows/release-charts.yaml @@ -11,10 +11,11 @@ jobs: # see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token permissions: contents: write + actions: write runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0