Skip to content

Commit

Permalink
Unuse set-output.
Browse files Browse the repository at this point in the history
Since ::set-output is now deprecated, we need to switch to
the new format.
  • Loading branch information
funilrys committed May 28, 2023
1 parent 73f42c4 commit 70b390f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ jobs:
- name: Get time for cache
id: cache_time
run: echo "::set-output name=time::$(date +%F-%T)"
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}

- name: Set up cache
uses: actions/cache@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
- name: Get time for cache
id: cache_time
run: echo "::set-output name=time::$(date +%F-%T)"
run: echo "time=$(date +%F-%T)" >> ${$GITHUB_OUTPUT}

- name: Set up cache
uses: actions/cache@master
Expand Down

0 comments on commit 70b390f

Please sign in to comment.