Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/public.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: openconfig/public

Check warning on line 1 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

public.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
pull_request:
Expand All @@ -6,7 +6,7 @@

jobs:

pattern:

Check warning on line 9 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

public.yml:9: overly broad permissions: default permissions used due to no permissions: block
name: pattern statement
runs-on: ubuntu-latest
strategy:
Expand All @@ -14,10 +14,10 @@

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 17 in .github/workflows/public.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 17 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Check failure on line 20 in .github/workflows/public.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 20 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

public.yml:20: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: '3.x'

Expand All @@ -33,7 +33,7 @@
env:
OCDIR: /tmp/public

posix-pattern:

Check warning on line 36 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

public.yml:36: overly broad permissions: default permissions used due to no permissions: block
name: posix-pattern statement
runs-on: ubuntu-latest
strategy:
Expand All @@ -41,12 +41,12 @@

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

Check failure on line 44 in .github/workflows/public.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 44 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

public.yml:44: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
go-version: 'stable'

- name: Check out code into the Go module directory
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 49 in .github/workflows/public.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 49 in .github/workflows/public.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Build
run: go build -v ./...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

jobs:

build:

Check warning on line 11 in .github/workflows/py.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

py.yml:11: overly broad permissions: default permissions used due to no permissions: block
name: Build
runs-on: ubuntu-latest
strategy:
Expand All @@ -16,10 +16,10 @@

steps:
- name: Check out code
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 19 in .github/workflows/py.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/py.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7

Check failure on line 22 in .github/workflows/py.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 22 in .github/workflows/py.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

py.yml:22: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: '3.x'

Expand Down
Loading