Skip to content

Commit cd39930

Browse files
Bump actions (#2725)
1 parent f2fe3f5 commit cd39930

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build-native-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
# path ends in a wildcard because on windows the file ends in '.exe'
103103
- name: Upload executable to workflow
104104
if: ${{ inputs.upload_artifact }}
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: ${{ matrix.musl && format('{0}_{1}_musl', matrix.os_family, matrix.arch) || format('{0}_{1}', matrix.os_family, matrix.arch)}}
108108
path: |

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: ./gradlew --no-daemon temporal-sdk:testResourceIndependent -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
4343

4444
- name: Publish Test Report
45-
uses: mikepenz/action-junit-report@v5
45+
uses: mikepenz/action-junit-report@v6
4646
if: success() || failure() # always run even if the previous step fails
4747
with:
4848
report_paths: '**/build/test-results/test/TEST-*.xml'
@@ -127,7 +127,7 @@ jobs:
127127
run: ./gradlew --no-daemon :temporal-sdk:virtualThreadTests -x spotlessCheck -x spotlessApply -x spotlessJava
128128

129129
- name: Publish Test Report
130-
uses: mikepenz/action-junit-report@v5
130+
uses: mikepenz/action-junit-report@v6
131131
if: success() || failure() # always run even if the previous step fails
132132
with:
133133
report_paths: '**/build/test-results/test/TEST-*.xml'
@@ -166,7 +166,7 @@ jobs:
166166
run: ./gradlew --no-daemon :temporal-sdk:test --tests '*CloudOperationsClientTest'
167167

168168
- name: Publish Test Report
169-
uses: mikepenz/action-junit-report@v5
169+
uses: mikepenz/action-junit-report@v6
170170
if: success() || failure() # always run even if the previous step fails
171171
with:
172172
report_paths: '**/build/test-results/test/TEST-*.xml'

.github/workflows/nightly-throughput-stress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
path: omes
6969

7070
- name: Setup Go
71-
uses: actions/setup-go@v5
71+
uses: actions/setup-go@v6
7272
with:
7373
go-version-file: omes/go.mod
7474
cache-dependency-path: omes/go.sum
@@ -129,7 +129,7 @@ jobs:
129129
130130
- name: Upload logs on failure
131131
if: failure() || cancelled()
132-
uses: actions/upload-artifact@v4
132+
uses: actions/upload-artifact@v5
133133
with:
134134
name: throughput-stress-logs
135135
path: ${{ env.WORKER_LOG_DIR }}

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148

149149
# when no artifact is specified, all artifacts are downloaded and expanded into CWD
150150
- name: Fetch executables
151-
uses: actions/download-artifact@v5
151+
uses: actions/download-artifact@v6
152152

153153
# example: linux_amd64/ -> temporal-test-server_1.2.3_linux_amd64
154154
# the name of the directory created becomes the basename of the archive (*.tar.gz or *.zip) and
@@ -165,7 +165,7 @@ jobs:
165165
run: for dir in *windows*; do zip -r "${dir}.zip" "$dir"; done
166166

167167
- name: Upload release archives
168-
uses: actions/upload-artifact@v4
168+
uses: actions/upload-artifact@v5
169169
with:
170170
name: release-archives
171171
path: |

0 commit comments

Comments
 (0)