Skip to content

Commit

Permalink
Fix deprecated "set-output" command in workflows (#25607) (#25609)
Browse files Browse the repository at this point in the history
Co-authored-by: Georgy K <[email protected]>
  • Loading branch information
timbset and Lykoi18 authored Sep 18, 2023
1 parent 9abb415 commit 4bad20a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ jobs:
steps:
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%s")"
shell: bash
run: echo "date=$(/bin/date -u "+%s")" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
id: notify-cache
Expand Down

0 comments on commit 4bad20a

Please sign in to comment.