Skip to content

Commit

Permalink
ci: reduce the permissions for github actions jobs (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeg authored Dec 13, 2024
1 parent 4879c43 commit 6a5a811
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
steps:
- name: Checkout action
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup the Node runtime for this project
uses: actions/setup-node@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ jobs:
build:
name: Build and tag a new version
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout the current code
uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{ github.event.release.tag_name }}

- name: Configure the runtime node
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ jobs:
name: Run tests
runs-on: ubuntu-latest
environment: staging
permissions:
checks: write
steps:
- name: "build: checkout the latest changes"
uses: actions/checkout@v4
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}

- name: "build: setup the node runtime"
Expand Down Expand Up @@ -226,7 +229,7 @@ jobs:
- name: "chore(health): check up on recent changes to the health score"
uses: slackapi/slack-health-score@v0.1.1
with:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
codecov_token: ${{ secrets.CODECOV_API_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
extension: js
include: src

0 comments on commit 6a5a811

Please sign in to comment.