Skip to content

Commit

Permalink
chore: che-21993 replace deprecated set-output in actions (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Mykhailo Kuznietsov <[email protected]>
  • Loading branch information
mkuznyetsov authored Apr 27, 2023
1 parent 4606a32 commit 5335cf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT
shell: bash
- name: Cache Maven Repository
id: cache-maven
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/native-build-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- id: generate
run: |
json=$(.github/generate-native-matrix.sh | tr -d '\n')
echo "::set-output name=matrix::${json}"
echo "matrix=${json}" >> $GITHUB_OUTPUT
build-with-native:
name: ${{matrix.category}}
runs-on: ubuntu-latest
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
echo "date=$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT
shell: bash
- name: Cache Maven Repository
id: cache-maven
Expand Down

0 comments on commit 5335cf4

Please sign in to comment.