Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Set permissions for GitHub actions #937

Merged
merged 1 commit into from Apr 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/go.yml
Expand Up @@ -3,6 +3,9 @@ on:
push:
branches: [ master ]
pull_request: {}
permissions:
contents: read

jobs:
build:
name: Build
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nix.yml
Expand Up @@ -3,6 +3,9 @@ on:
push:
branches: [ master ]
pull_request: {}
permissions:
contents: read

jobs:
build:
name: Build
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -7,8 +7,13 @@ on:
# TODO: also publish the dist
name: Create Release

permissions:
contents: read

jobs:
build:
permissions:
contents: write # for actions/create-release to create a release
name: Create Release
runs-on: ubuntu-latest
steps:
Expand Down