Skip to content

Commit

Permalink
Update actions/checkout, replace set-output
Browse files Browse the repository at this point in the history
Update actions/checkout to v3 (v2 uses node 12 which is deprecated), replace set-output with $GITHUB_OUTPUT (set-output is being deprecated)
  • Loading branch information
xenago authored Dec 7, 2022
1 parent 57c124b commit 5838b0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Generate release tag
id: tag
run: |
echo "::set-output name=release_tag::UserBuild_$(date +"%Y.%m.%d_%H-%M")"
echo "release_tag=UserBuild_$(date +"%Y.%m.%d_%H-%M")" >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 5838b0d

Please sign in to comment.