Skip to content

Commit

Permalink
action-download-artifact: Use v2 release insted of master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
koplo199 committed Jan 4, 2023
1 parent fa62f3b commit 50fd417
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/pull-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Check for new artifact
id: download-artifact
if: matrix.components.workflow != '' && env.UPDATED != 'true'
uses: dawidd6/action-download-artifact@master
uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{secrets.GITHUB_TOKEN}}
workflow: ${{ matrix.components.workflow }}
Expand Down Expand Up @@ -263,14 +263,16 @@ jobs:
token: ${{secrets.GITHUB_TOKEN}}

- name: Enable Pull Request Automerge
if: false && steps.cpr.outputs.pull-request-operation == 'created'
if: false
# if: steps.cpr.outputs.pull-request-operation == 'created'
uses: peter-evans/enable-pull-request-automerge@v2
with:
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
merge-method: squash
token: ${{secrets.GITHUB_TOKEN}}

- uses: hmarr/auto-approve-action@v3
if: false && steps.cpr.outputs.pull-request-operation == 'created'
if: false
# if: steps.cpr.outputs.pull-request-operation == 'created'
with:
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}

0 comments on commit 50fd417

Please sign in to comment.