Skip to content

Commit

Permalink
ci: fix permissions for GITHUB_TOKEN on dependabot workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
auricom committed Nov 18, 2024
1 parent 1b3aeb7 commit 99fdac8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dependabot-update-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Dependabot Update All Go Modules
on: pull_request

permissions:
contents: write
pull-requests: write

env:
Expand All @@ -16,8 +17,6 @@ jobs:
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
# Secret to be added in the repo under Settings > Secrets > Dependabot
token: ${{ secrets.PRBOT_PAT }}
- uses: actions/setup-go@v5
with:
go-version: "1.23"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:
- main

permissions:
contents: read
contents: write
pull-requests: write

concurrency:
group: ci-${{ github.ref }}-tests
Expand Down

0 comments on commit 99fdac8

Please sign in to comment.