Skip to content

Commit 59fc3bf

Browse files
Bump actions/upload-artifact from 4.6.1 to 4.6.2 (#4941)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@4cec3d8...ea165f8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 512d493 commit 59fc3bf

14 files changed

+27
-27
lines changed

.github/workflows/build-reuse-darwin-framework.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
shell: pwsh
7777
run: scripts/merge-darwin.ps1 -DeleteSource -Config ${{ inputs.config }}
7878
- name: Upload build artifacts
79-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
79+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
8080
with:
8181
name: ${{ inputs.config }}-macos-macos-13-universal-${{ inputs.tls }}${{ inputs.static }}
8282
path: artifacts
@@ -108,7 +108,7 @@ jobs:
108108
shell: pwsh
109109
run: scripts/package-darwin-framework.ps1 -Config ${{ inputs.config }} -Platform ${{ matrix.vec.plat }} -Arch ${{ matrix.vec.arch }}
110110
- name: Upload build artifacts
111-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
111+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
112112
with:
113113
name: Framework-${{ inputs.config }}-${{ matrix.vec.plat }}-macos-13-${{ matrix.vec.arch }}-${{ inputs.tls }}${{ inputs.static }}
114114
path: artifacts
@@ -142,7 +142,7 @@ jobs:
142142
shell: pwsh
143143
run: scripts/package-darwin-xcframework.ps1 -Config ${{ inputs.config }}
144144
- name: Upload build artifacts
145-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
145+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
146146
with:
147147
name: XCFramework-${{ inputs.config }}
148148
path: artifacts/frameworks

.github/workflows/build-reuse-unix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
shell: pwsh
118118
run: scripts/build.ps1 -Config ${{ inputs.config }} -Platform ${{ inputs.plat }} -Arch ${{ inputs.arch }} -Tls ${{ inputs.tls }} ${{ inputs.static }} ${{ inputs.clang }} ${{ inputs.systemcrypto }} ${{ inputs.codecheck }} ${{ inputs.sanitize }} ${{ inputs.xdp }} -OneBranch
119119
- name: Upload build artifacts
120-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
120+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
121121
with:
122122
name: ${{ inputs.config }}-${{ inputs.plat }}-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.tls }}${{ inputs.static }}${{ inputs.clang }}${{ inputs.systemcrypto }}${{ inputs.codecheck }}${{ inputs.sanitize }}${{ inputs.xdp }}${{ inputs.build }}
123123
path: artifacts

.github/workflows/build-reuse-win.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
Remove-Item artifacts/corenet-ci-main -Recurse -Force -ErrorAction Ignore
114114
Remove-Item artifacts/xdp -Recurse -Force -ErrorAction Ignore
115115
- name: Upload build artifacts
116-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
116+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
117117
with:
118118
name: ${{ inputs.config }}-${{ inputs.plat }}-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.tls }}${{ inputs.sanitize }}${{ inputs.static }}${{ inputs.build }}
119119
path: artifacts

.github/workflows/build-reuse-winkernel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
Remove-Item artifacts/corenet-ci-main -Recurse -Force -ErrorAction Ignore
9393
Remove-Item artifacts/xdp -Recurse -Force -ErrorAction Ignore
9494
- name: Upload build artifacts
95-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
95+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
9696
with:
9797
name: ${{ inputs.config }}-${{ inputs.plat }}-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.tls }}${{ inputs.build }}
9898
path: artifacts

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ jobs:
231231
shell: pwsh
232232
run: scripts/package-nuget.ps1 -Tls ${{ matrix.vec.tls }} ${{ matrix.vec.arg }} -GHA
233233
- name: Upload build artifacts
234-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
234+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
235235
with:
236236
name: Nuget-Release-${{ matrix.vec.plat }}-windows-2022-arm64-${{ matrix.vec.tls }}
237237
path: artifacts/dist/*.nupkg

.github/workflows/cifuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
dry-run: false
2222
language: c
2323
- name: Upload Crash
24-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
24+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
2525
if: failure() && steps.build.outcome == 'success'
2626
with:
2727
name: artifacts

.github/workflows/code-coverage.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
continue-on-error: true
7979
run: scripts/test.ps1 -NoProgress -IsolationMode Batch -SkipUnitTests -CodeCoverage -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -LogProfile Full.Light ${{ matrix.vec.xdp }} ${{ matrix.vec.qtip }}
8080
- name: Upload Results
81-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
81+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
8282
with:
8383
name: BVT-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.qtip }}${{ matrix.vec.systemcrypto }}${{ matrix.vec.sanitize }}
8484
path: artifacts/coverage/*.cov
@@ -128,7 +128,7 @@ jobs:
128128
shell: pwsh
129129
run: scripts/spin.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -Timeout ${{ env.main-timeout }} -RepeatCount ${{ env.main-repeat }} -AllocFail ${{ env.main-allocfail }} ${{ matrix.vec.xdp }} -CodeCoverage -LogProfile Basic.Light
130130
- name: Upload Results
131-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
131+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
132132
with:
133133
name: Spin-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
134134
path: artifacts/coverage/*.cov
@@ -174,7 +174,7 @@ jobs:
174174
shell: pwsh
175175
run: scripts/recvfuzz.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -timeout ${{ env.main-timeout }} ${{ matrix.vec.xdp }} -CodeCoverage -LogProfile Basic.Light
176176
- name: Upload Results
177-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
177+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
178178
with:
179179
name: RecvFuzz-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
180180
path: artifacts/coverage/*.cov
@@ -223,7 +223,7 @@ jobs:
223223
shell: pwsh
224224
run: scripts/merge-coverage.ps1 -Config Debug -Arch x64 -Tls openssl
225225
- name: Upload Results
226-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
226+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
227227
with:
228228
name: merged
229229
path: artifacts\coverage\windows\x64_Debug_openssl\msquiccoverage.xml

.github/workflows/package-alpine-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
-v $(pwd):/msquic \
4848
${{ matrix.vec.image }} /msquic/scripts/package-build.sh
4949
- name: Upload Package
50-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
50+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
5151
with:
5252
name: ${{ matrix.vec.friendlyName }}-package
5353
path: packages/*.apk

.github/workflows/package-reuse-linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
shell: pwsh
104104
run: scripts/package-distribution.ps1 ${{ inputs.time64 }}
105105
- name: Upload build artifacts
106-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
106+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
107107
with:
108108
name: Package-${{ inputs.config }}-linux-${{ inputs.os }}-${{ inputs.arch }}-${{ inputs.tls }}-UseSystemOpenSSLCrypto${{ inputs.sanitize }}${{ inputs.xdp }}${{ inputs.build }}
109109
path: artifacts/dist

.github/workflows/plugins.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce
3131
- name: Build
3232
run: msbuild src\plugins\msquic.windbg.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}
33-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
33+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
3434
with:
3535
name: bin_windbg_${{ matrix.configuration }}_${{ matrix.platform }}
3636
path: |
@@ -58,7 +58,7 @@ jobs:
5858
run: dotnet tool install --global Microsoft.Performance.Toolkit.Plugins.Cli --version 0.1.25-preview
5959
- name: Build
6060
run: dotnet build src\plugins\QuicTrace.sln -c ${{ matrix.configuration }}
61-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
61+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
6262
with:
6363
name: bin_quictrace_${{ matrix.configuration }}
6464
path: artifacts/bin/quictrace/${{ matrix.configuration }}
@@ -73,7 +73,7 @@ jobs:
7373
$packageName = "$pluginId-$pluginVersion.ptix"
7474
Write-Host "Creating $packageName"
7575
& plugintool pack -s $sourceDir -o "artifacts/bin/quictrace/$packageName"
76-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
76+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
7777
with:
7878
name: ptix_quictrace_${{ matrix.configuration }}
7979
path: artifacts/bin/quictrace/*.ptix

.github/workflows/scorecards-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
# Upload the results as artifacts (optional).
4545
- name: "Upload artifact"
46-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
46+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
4747
with:
4848
name: SARIF file
4949
path: results.sarif

.github/workflows/stress.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
run: |
131131
sudo chmod -R 777 artifacts
132132
- name: Upload on Failure
133-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
133+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
134134
if: failure()
135135
with:
136136
name: stress-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}
@@ -186,7 +186,7 @@ jobs:
186186
shell: pwsh
187187
run: scripts/recvfuzz.ps1 -AZP -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -timeout ${{ env.main-timeout }} ${{ matrix.vec.xdp }}
188188
- name: Upload on Failure
189-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
189+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
190190
if: failure()
191191
with:
192192
name: recvfuzz-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.sanitize }}

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
run: |
190190
sudo chmod -R 777 artifacts
191191
- name: Upload on Failure
192-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
192+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
193193
if: failure()
194194
with:
195195
name: BVT-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}${{ matrix.vec.qtip }}${{ matrix.vec.systemcrypto }}${{ matrix.vec.sanitize }}
@@ -239,7 +239,7 @@ jobs:
239239
timeout-minutes: 90
240240
run: scripts/test.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -OsRunner ${{ matrix.vec.os }} -GHA -LogProfile Full.Light -GenerateXmlResults -Kernel -Filter -*ValidateConfiguration:*ValidAlpnLengths:*ResumeRejection*:*ClientCertificate*:*LoadBalanced*
241241
- name: Upload on Failure or Cancellation
242-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
242+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
243243
if: failure() || cancelled()
244244
with:
245245
name: BVT-Kernel-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}
@@ -288,7 +288,7 @@ jobs:
288288
shell: pwsh
289289
run: scripts/interop.ps1 -Config ${{ matrix.vec.config }} -Arch ${{ matrix.vec.arch }} -Tls ${{ matrix.vec.tls }} -GHA -GenerateXmlResults
290290
- name: Upload results
291-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
291+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
292292
if: failure() || cancelled()
293293
with:
294294
name: InteropWinlatest-${{ matrix.vec.config }}-${{ matrix.vec.plat }}-${{ matrix.vec.os }}-${{ matrix.vec.arch }}-${{ matrix.vec.tls }}${{ matrix.vec.xdp }}

.github/workflows/wan-perf.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Prepare Machine
4343
shell: pwsh
4444
run: scripts/build.ps1 -Config Release -DisableTest -DisableTools
45-
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
45+
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
4646
with:
4747
name: bin
4848
path: |
@@ -100,12 +100,12 @@ jobs:
100100
shell: pwsh
101101
run: scripts/emulated-performance.ps1 -Debug -Protocol ('QUIC','TCPTLS') -LogProfile Performance.Light -NoDateLogDir -NumIterations ${{ env.iterations }} -DurationMs ${{ env.duration }} -Pacing ${{ env.pacing }} -BottleneckMbps ${{ matrix.rate }} -RttMs ${{ matrix.rtt }} -BottleneckQueueRatio ${{ matrix.queueRatio }} -RandomLossDenominator ${{ env.loss }} -RandomReorderDenominator ${{ env.reorder }} -ReorderDelayDeltaMs ${{ env.delay }} -BaseRandomSeed ${{ env.seed }} -CongestionControl ${{ env.congestionControl }}
102102
- name: Upload Results
103-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
103+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
104104
with:
105105
name: data
106106
path: artifacts/PerfDataResults/windows/x64_Release_schannel/WAN/*.json
107107
- name: Upload Logs
108-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
108+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
109109
with:
110110
name: ${{ format('logs.{0}mbps.{1}ms', matrix.rate, matrix.rtt) }}
111111
path: artifacts/logs/wanperf/*.etl
@@ -127,7 +127,7 @@ jobs:
127127
shell: pwsh
128128
run: scripts/emulated-performance.ps1 -MergeDataFiles
129129
- name: Upload CSV
130-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
130+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
131131
with:
132132
name: csv
133133
path: artifacts\PerfDataResults\windows\x64_Release_schannel\WAN\wan_data.csv

0 commit comments

Comments
 (0)