66
66
echo "Servers: $SERVERS"
67
67
MATRIX=$(echo "[$CLIENTS, $SERVERS]" | jq -c '{"include": . | flatten | sort | unique}')
68
68
echo "Matrix: $MATRIX"
69
- echo "::set-output name= matrix:: $MATRIX"
69
+ echo "matrix= $MATRIX" >> $GITHUB_OUTPUT
70
70
71
71
s2n-quic-qns :
72
72
runs-on : ubuntu-22.04
@@ -257,7 +257,7 @@ jobs:
257
257
wget ${INTEROP_BASE_URL}latest/result.json || echo '{}' > result.json
258
258
mv result.json latest.json
259
259
INTEROP_LOG_URL=${INTEROP_BASE_URL}$(jq --raw-output '.log_dir' latest.json)/SERVER_CLIENT/TEST/
260
- echo "::set-output name= INTEROP_LOG_URL:: $INTEROP_LOG_URL"
260
+ echo "INTEROP_LOG_URL= $INTEROP_LOG_URL" >> $GITHUB_OUTPUT
261
261
262
262
- name : Get latest successful interop commit SHA on main branch
263
263
id : mainsha
@@ -268,7 +268,7 @@ jobs:
268
268
--header "Accept: application/vnd.github.v3+json" > latest_workflow_run.json
269
269
MAIN_SHA=$(jq --raw-output '.workflow_runs[0] | .head_sha' latest_workflow_run.json)
270
270
rm -f latest_workflow_run.json
271
- echo "::set-output name= MAIN_SHA:: $MAIN_SHA"
271
+ echo "MAIN_SHA= $MAIN_SHA" >> $GITHUB_OUTPUT
272
272
273
273
- name : Download latest main interop result
274
274
if : github.event.pull_request
@@ -322,7 +322,7 @@ jobs:
322
322
TARGET="${{ github.sha }}/interop"
323
323
aws s3 sync web "s3://s2n-quic-ci-artifacts/$TARGET" --acl private --follow-symlinks
324
324
URL="$CDN/$TARGET/index.html"
325
- echo "::set-output name= URL:: $URL"
325
+ echo "URL= $URL" >> $GITHUB_OUTPUT
326
326
327
327
- uses : ouzi-dev/commit-status-updater@v2.0.1
328
328
if : github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name
@@ -423,7 +423,7 @@ jobs:
423
423
TARGET="${{ github.sha }}/bench"
424
424
aws s3 sync target/benchmark/results "s3://s2n-quic-ci-artifacts/$TARGET" --acl private --follow-symlinks
425
425
URL="$CDN/$TARGET/index.html"
426
- echo "::set-output name= URL:: $URL"
426
+ echo "URL= $URL" >> $GITHUB_OUTPUT
427
427
428
428
- uses : ouzi-dev/commit-status-updater@v2.0.1
429
429
if : github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name
@@ -572,7 +572,7 @@ jobs:
572
572
TARGET="${{ github.sha }}/perf"
573
573
aws s3 sync perf-results "s3://s2n-quic-ci-artifacts/$TARGET" --acl private --follow-symlinks
574
574
URL="$CDN/$TARGET/index.html"
575
- echo "::set-output name= URL:: $URL"
575
+ echo "URL= $URL" >> $GITHUB_OUTPUT
576
576
577
577
- uses : ouzi-dev/commit-status-updater@v2.0.1
578
578
if : github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name
0 commit comments