Skip to content

Commit 16711b5

Browse files
authored
fix: action.yml referencing the wrong tag, missing 'v' prefix (#16)
1 parent a63756c commit 16711b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ runs:
6363
using: "composite"
6464
steps:
6565
- name: Setup Java
66-
uses: actions/setup-java@4.7.0
66+
uses: actions/setup-java@v4.7.0
6767
with:
6868
distribution: ${{ inputs.java_distribution }}
6969
java-version: ${{ inputs.java_version }}
7070

7171
- name: Cache SpotBugs
7272
if: inputs.no_cache == 'false'
7373
id: cache-spotbugs
74-
uses: actions/cache@4.2.3
74+
uses: actions/cache@v4.2.3
7575
with:
7676
path: ${{ inputs.base_path }}/spotbugs+/spotbugs-${{ inputs.spotbugs_version }}
7777
key: ${{ runner.os }}-spotbugs-${{ inputs.spotbugs_version }}
7878

7979
- name: Cache FindSecBugs
8080
if: inputs.no_cache == 'false'
8181
id: cache-findsecbugs
82-
uses: actions/cache@4.2.3
82+
uses: actions/cache@v4.2.3
8383
with:
8484
path: ${{ inputs.base_path }}/findsecbugs+/findsecbugs-plugin-${{ inputs.findsecbugs_version }}.jar
8585
key: ${{ runner.os }}-findsecbugs-${{ inputs.findsecbugs_version }}
@@ -152,6 +152,6 @@ runs:
152152

153153
- name: Upload SARIF file
154154
if: inputs.upload_sarif == 'true'
155-
uses: github/codeql-action/upload-sarif@3.28.15
155+
uses: github/codeql-action/upload-sarif@v3.28.15
156156
with:
157157
sarif_file: ${{ inputs.base_path }}/spotbugs_working+/spotbugs.sarif

0 commit comments

Comments
 (0)