Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
branches: [ main ]

jobs:
test:

Check warning on line 10 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

go-test.yml:10: overly broad permissions: default permissions used due to no permissions: block
name: Run go test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v7

Check failure on line 16 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 16 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go-test.yml:16: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up Go
uses: actions/setup-go@v6
uses: actions/setup-go@v7

Check failure on line 19 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 19 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go-test.yml:19: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
go-version: 1.26.4

- name: Cache Go modules
uses: actions/cache@v6

Check failure on line 24 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 24 in .github/workflows/go-test.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go-test.yml:24: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
path: |
~/.cache/go-build
Expand Down
Loading