Skip to content

Commit

Permalink
chore: Replace deprecated set-output usage (#5)
Browse files Browse the repository at this point in the history
Closes #4
  • Loading branch information
dbanty authored Dec 18, 2022
1 parent d9d6c1b commit 78a0006
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Knope
uses: knope-dev/action@v1
uses: knope-dev/action@replace-set-output
- name: Test Knope
run: knope --help
- name: Verify no artifacts in path
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Knope
uses: knope-dev/action@v1
uses: knope-dev/action@replace-set-output
with:
version: 0.4.3
- name: Test Knope
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
- name: "Set version"
id: "set_version"
shell: bash
run: echo "::set-output name=version::$(python ${{ github.action_path }}/get_knope_version.py ${{ inputs.version }})"
run: echo "version=$(python ${{ github.action_path }}/get_knope_version.py ${{ inputs.version }})" >> $GITHUB_OUTPUT
- name: "Download Knope"
id: "download_knope"
shell: bash
Expand Down

0 comments on commit 78a0006

Please sign in to comment.