Skip to content

Commit 32eaa6a

Browse files
chore(deps): update github-actions
1 parent 4c457eb commit 32eaa6a

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/ci-build.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: |
8484
./gradlew --no-daemon jacocoTestReport
8585
- name: Upload Test Report
86-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
86+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8787
if: always() # always run even if the previous step fails
8888
with:
8989
name: junit-test-results-${{ matrix.os }}
@@ -97,7 +97,7 @@ jobs:
9797
verbose: true # optional (default = false)
9898
- name: build-choco-package
9999
if: runner.os == 'Windows'
100-
uses: actions/setup-dotnet@71a4fd9b27383962fc5df13a9c871636b43199b4 # v1
100+
uses: actions/setup-dotnet@871f041373faaad213a635d9afb62905ec029bbb # v1
101101
with:
102102
dotnet-version: '2.2.204' # SDK Version to use.
103103
- name: build-choco
@@ -106,20 +106,20 @@ jobs:
106106
powershell
107107
choco pack build/choco/jbang.nuspec
108108
- name: Archive build results
109-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
109+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
110110
if: always()
111111
with:
112112
name: ${{ runner.os }}-build-${{ github.sha }}
113113
path: build
114114
- name: Upload jbang.zip
115-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
115+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
116116
if: always() && runner.os != 'Windows'
117117
with:
118118
name: jbang-${{ github.sha }}
119119
path: build/install/jbang
120120
- name: Write out Unit Test report annotation for forked repo
121121
if: always()
122-
uses: mikepenz/action-junit-report@b14027d33d3a745ccc4d6a12f649e83110b5a373 # v5
122+
uses: mikepenz/action-junit-report@97744eca465b8df9e6e33271cb155003f85327f1 # v5
123123
with:
124124
report_paths: '**/build/test-results/test/TEST-*.xml'
125125
annotate_only: true # forked repo cannot write to checks so just do annotations
@@ -138,7 +138,7 @@ jobs:
138138
with:
139139
distribution: 'temurin'
140140
java-version: ${{ matrix.java }}
141-
- uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
141+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
142142
with:
143143
name: ${{ runner.os }}-build-${{ github.sha }}
144144
path: build

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3
45+
uses: github/codeql-action/init@5f8171a638ada777af81d42b55959a643bb29017 # v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3
56+
uses: github/codeql-action/autobuild@5f8171a638ada777af81d42b55959a643bb29017 # v3
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3
70+
uses: github/codeql-action/analyze@5f8171a638ada777af81d42b55959a643bb29017 # v3

.github/workflows/publish-packages.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
setup-java: false
5454
- name: JReleaser publish output
5555
if: always()
56-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
56+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
5757
with:
5858
name: jreleaser-publish
5959
path: |
@@ -76,14 +76,14 @@ jobs:
7676
setup-java: false
7777
- name: JReleaser announce output
7878
if: always()
79-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
79+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8080
with:
8181
name: jreleaser-announce
8282
path: |
8383
out/jreleaser/trace.log
8484
out/jreleaser/output.properties
8585
- name: upload-choco
86-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
86+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8787
with:
8888
name: build-choco
8989
path: build/choco
@@ -97,7 +97,7 @@ jobs:
9797
with:
9898
name: build-choco
9999
path: build/choco
100-
- uses: actions/setup-dotnet@71a4fd9b27383962fc5df13a9c871636b43199b4 # v1
100+
- uses: actions/setup-dotnet@871f041373faaad213a635d9afb62905ec029bbb # v1
101101
with:
102102
dotnet-version: '2.2.204' # SDK Version to use.
103103
- name: choco-build

.github/workflows/report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
echo "The PR number is: ${{ env.pr_number }}"
4343
4444
- name: Download Test Report
45-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
45+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
4646
with:
4747
name: junit-test-results-*
4848
#path: test-${{ matrix.os }}
4949
#pattern: my-artifact-*
5050
merge-multiple: true
5151
run-id: ${{ github.event.workflow_run.id }}
5252
- name: Publish Test Report
53-
uses: mikepenz/action-junit-report@b14027d33d3a745ccc4d6a12f649e83110b5a373 # v5
53+
uses: mikepenz/action-junit-report@97744eca465b8df9e6e33271cb155003f85327f1 # v5
5454
with:
5555
commit: ${{github.event.workflow_run.head_sha}}
5656
report_paths: '**/build/test-results/test/TEST-*.xml'

.github/workflows/tag-and-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
setup-java: false
6161
- name: JReleaser output
6262
if: always()
63-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4
63+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
6464
with:
6565
name: jreleaser-release
6666
path: |

0 commit comments

Comments
 (0)