Skip to content

Commit e2202ad

Browse files
committed
Get rid of deprecated set-output
1 parent 7ae0835 commit e2202ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-pr-development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Get Date
4040
id: get-date
4141
run: |
42-
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
42+
echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT
4343
shell: bash
4444
- name: Cache Maven Repository
4545
id: cache-maven

.github/workflows/native-build-development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- id: generate
2323
run: |
2424
json=$(.github/generate-native-matrix.sh | tr -d '\n')
25-
echo "::set-output name=matrix::${json}"
25+
echo "matrix=${json}" >> $GITHUB_OUTPUT
2626
build-with-native:
2727
name: ${{matrix.category}}
2828
runs-on: ubuntu-latest
@@ -43,7 +43,7 @@ jobs:
4343
- name: Get Date
4444
id: get-date
4545
run: |
46-
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
46+
echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT
4747
shell: bash
4848
- name: Cache Maven Repository
4949
id: cache-maven

0 commit comments

Comments
 (0)