9797 runs-on : ubuntu-latest
9898 steps :
9999 - name : Get tag name
100- run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "::set-output name= tag:: ${tag#v}"
100+ run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "tag= ${tag#v}" >> $GITHUB_OUTPUT
101101 id : tag
102102 - name : Check out the repo
103103 uses : actions/checkout@v4
@@ -118,7 +118,7 @@ jobs:
118118 - name : Prepare
119119 id : prep
120120 run : |
121- echo "::set-output name= created:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
121+ echo "created= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
122122 - name : Push to Docker Hub
123123 # cf. https://github.com/docker/build-push-action#customizing
124124 # and https://github.com/docker/build-push-action/pull/119
@@ -148,7 +148,7 @@ jobs:
148148 runs-on : ubuntu-latest
149149 steps :
150150 - name : Get tag name
151- run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "::set-output name= tag:: ${tag#v}"
151+ run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "tag= ${tag#v}" >> $GITHUB_OUTPUT
152152 id : tag
153153 - name : Check out the repo
154154 uses : actions/checkout@v4
@@ -169,7 +169,7 @@ jobs:
169169 - name : Prepare
170170 id : prep
171171 run : |
172- echo "::set-output name= created:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
172+ echo "created= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
173173 - name : Push to Docker Hub
174174 # cf. https://github.com/docker/build-push-action#customizing
175175 # and https://github.com/docker/build-push-action/pull/119
@@ -203,7 +203,7 @@ jobs:
203203 runs-on : ubuntu-latest
204204 steps :
205205 - name : Get tag name
206- run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "::set-output name= tag:: ${tag#v}"
206+ run : tag="${{ needs.release-please.outputs.tag_name }}"; echo "tag= ${tag#v}" >> $GITHUB_OUTPUT
207207 id : tag
208208 - name : Check out the repo
209209 uses : actions/checkout@v4
@@ -224,7 +224,7 @@ jobs:
224224 - name : Prepare
225225 id : prep
226226 run : |
227- echo "::set-output name= created:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')"
227+ echo "created= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
228228 - name : Push to Docker Hub
229229 # cf. https://github.com/docker/build-push-action#customizing
230230 # and https://github.com/docker/build-push-action/pull/119
0 commit comments