From 09b8117165592ed8e8a59512880e6a7b82437616 Mon Sep 17 00:00:00 2001 From: arpitjain099 Date: Wed, 13 May 2026 11:45:19 +0000 Subject: [PATCH] ci(proposals): declare contents: read + actions: write The workflow uses actions/cache@v3 for the Go module cache (saves on miss), so it needs contents: read + actions: write. Signed-off-by: arpitjain099 --- .github/workflows/proposals.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/proposals.yaml b/.github/workflows/proposals.yaml index 953f79e1..358210ce 100644 --- a/.github/workflows/proposals.yaml +++ b/.github/workflows/proposals.yaml @@ -7,6 +7,11 @@ on: tags: pull_request: +# actions/cache@v3 saves the Go module cache on miss. +permissions: + contents: read + actions: write + jobs: lint: runs-on: ubuntu-latest