Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/docker_pygem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
steps:
- name: 'Check out the repo'
uses: actions/checkout@v4
with:
persist-credentials: false

- name: 'Set up Docker buildx'
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
- name: 'Checkout the PyGEM repo'
id: checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: 'Reinstall PyGEM'
run: pip install --break-system-packages -e .
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Workflows static analysis using zizmor"

on:
workflow_dispatch:
push:
branches:
- master
- dev
pull_request:
paths:
- ".github/workflows/*"

jobs:
zizmor-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Install zizmor
run: |
python3 -m pip install --upgrade pip
python3 -m pip install zizmor

- name: Run zizmor
run: zizmor .github/workflows/
170 changes: 166 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading