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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

Check failure on line 31 in .github/workflows/build.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 31 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- uses: actions/setup-java@v5
- uses: actions/setup-java@v6

Check failure on line 33 in .github/workflows/build.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 33 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yaml:33: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: 17
Expand All @@ -40,7 +40,7 @@

- name: Deploy docs to website
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/github-pages-deploy-action@v4

Check failure on line 43 in .github/workflows/build.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 43 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yaml:43: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: site
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

Check failure on line 28 in .github/workflows/release.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 28 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

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

- uses: actions/setup-java@v5
- uses: actions/setup-java@v6

Check failure on line 30 in .github/workflows/release.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 30 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

release.yaml:30: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: 17
Expand All @@ -35,7 +35,7 @@
- run: mvn javadoc:javadoc

- name: Deploy docs to website
uses: JamesIves/github-pages-deploy-action@v4

Check failure on line 38 in .github/workflows/release.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 38 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

release.yaml:38: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: site
Expand Down
Loading