Skip to content

Commit bde37bf

Browse files
authored
Replaced depricated set-output function in two workflows. (#1310)
1 parent 373447b commit bde37bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tags_docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
latest=$(git describe --tags $(git rev-list --tags --max-count=1))
2222
echo Current version: $latest
23-
echo "::set-output name=version::$latest"
23+
echo "version=$latest" >> $GITHUB_OUTPUT
2424
2525
- name: 📆 Set version number
2626
run: |
@@ -79,7 +79,7 @@ jobs:
7979
run: |
8080
latest=$(git describe --tags $(git rev-list --tags --max-count=1))
8181
echo Current version: $latest
82-
echo "::set-output name=version::$latest"
82+
echo "version=$latest" >> $GITHUB_OUTPUT
8383
8484
- name: 📆 Set version number
8585
run: |

.github/workflows/tags_nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
latest=$(git describe --tags $(git rev-list --tags --max-count=1))
2323
echo Current version: $latest
24-
echo "::set-output name=version::$latest"
24+
echo "version=$latest" >> $GITHUB_OUTPUT
2525
2626
- name: 🥅 Install .Net 9
2727
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)