Skip to content

Commit 2ff7f29

Browse files
committed
Fix two set-output GHA deprecation warnings for release-series-builds.yml
1 parent 94afe1d commit 2ff7f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-series-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
steps:
153153
- name: make date tag
154154
id: mkdatetag
155-
run: echo "::set-output name=dtag::$(date +%Y%m%d-%H%M)"
155+
run: echo "dtag=$(date +%Y%m%d-%H%M)" >> $GITHUB_OUTPUT
156156

157157
push-images:
158158
name: Push ${{ matrix.image }}:${{ matrix.osg_series }}-${{ matrix.repo }} image
@@ -191,7 +191,7 @@ jobs:
191191
# This causes the tag_list array to be comma-separated below,
192192
# which is required for build-push-action
193193
IFS=,
194-
echo "::set-output name=taglist::${tag_list[*]}"
194+
echo "taglist=${tag_list[*]}" >> $GITHUB_OUTPUT
195195
196196
- name: Set up Docker Buildx
197197
uses: docker/setup-buildx-action@v1

0 commit comments

Comments
 (0)