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/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@

steps:
- name: Checkout repository
uses: actions/checkout@v6

Check failure on line 41 in .github/workflows/codeql-analysis.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 41 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

codeql-analysis.yml:41: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up JDK 21
uses: actions/setup-java@v5
uses: actions/setup-java@v6

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

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

codeql-analysis.yml:44: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
java-version: '21'
distribution: 'temurin'
Expand All @@ -49,7 +49,7 @@

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v4

Check failure on line 52 in .github/workflows/codeql-analysis.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 52 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

codeql-analysis.yml:52: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -61,4 +61,4 @@
run: mvn -B verify --file pom.xml

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4

Check failure on line 64 in .github/workflows/codeql-analysis.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 64 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

codeql-analysis.yml:64: unpinned action reference: action is not pinned to a hash (required by blanket policy)
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
branches: [ "main" ]

jobs:
build:

Check warning on line 13 in .github/workflows/maven.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

maven.yml:13: overly broad permissions: default permissions used due to no permissions: block

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6

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

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

maven.yml:18: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Set up JDK 21
uses: actions/setup-java@v5
uses: actions/setup-java@v6

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

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

maven.yml:20: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
java-version: '21'
distribution: 'temurin'
Expand Down
Loading