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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
runs-on: ubuntu-latest
container: python:3.8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7

Check failure on line 16 in .github/workflows/publish.yaml

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/publish.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish.yaml:16: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install system dependencies.
run: apt-get update && apt-get install -y rsync
- name: Install the site generator.
Expand All @@ -21,7 +21,7 @@
- name: Build the static site.
run: aip-site-gen . out
- name: Publish the static site to GitHub Pages.
uses: jamesives/github-pages-deploy-action@v4

Check failure on line 24 in .github/workflows/publish.yaml

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/publish.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

publish.yaml:24: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
branches:
- master
jobs:
build:

Check warning on line 8 in .github/workflows/test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

test.yaml:8: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
container: python:3.8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7

Check failure on line 12 in .github/workflows/test.yaml

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 12 in .github/workflows/test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

test.yaml:12: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install the site-generator
run: pip install -r requirements.txt
- name: Build the site.
Expand Down
Loading