Skip to content

Commit

Permalink
Fix Actions set-output deprecation warning
Browse files Browse the repository at this point in the history
Refs #4472
  • Loading branch information
kimrutherford committed Jan 20, 2024
1 parent 5281f72 commit 8581410
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Update release files
run: cd src/ontology/ && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' GITHUB_ACTION=true synonyms fix_quality_issue clear_obsoletes prepare_release_fast normalise_xsd_string && cd ../../
- name: Run release
Expand Down

0 comments on commit 8581410

Please sign in to comment.