Skip to content

Commit

Permalink
Upgrade the run-qit-extension action in the github-actions packag…
Browse files Browse the repository at this point in the history
…e to use Node.js v20.
  • Loading branch information
eason9487 committed Apr 25, 2024
1 parent 03d3867 commit e0f4a90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Delegate QIT Tests
uses: woocommerce/grow/run-qit-extension@actions-v1
uses: woocommerce/grow/run-qit-extension@actions-v2
with:
qit-partner-user: ${{ secrets.QIT_PARTNER_USER }}
qit-partner-secret: ${{ secrets.QIT_PARTNER_SECRET }}
Expand Down
12 changes: 6 additions & 6 deletions packages/github-actions/actions/run-qit-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ runs:
- name: Download `gha-dev-build`
if: ${{ inputs.version == 'dev' }}
uses: robinraju/release-downloader@v1.8
uses: robinraju/release-downloader@v1.10
with:
repository: "woocommerce/${{ inputs.extension }}"
tag: 'gha-dev-build'
Expand All @@ -93,7 +93,7 @@ runs:
- name: Activation test
id: activation
if: ${{ inputs.test-activation == 'true' }}
uses: woocommerce/grow/run-qit-annotate@actions-v1
uses: woocommerce/grow/run-qit-annotate@actions-v2
with:
type: activation
extension: ${{ inputs.extension }}
Expand All @@ -105,7 +105,7 @@ runs:
- name: Security test
id: security
if: ${{ inputs.test-security == 'true' }}
uses: woocommerce/grow/run-qit-annotate@actions-v1
uses: woocommerce/grow/run-qit-annotate@actions-v2
with:
type: security
extension: ${{ inputs.extension }}
Expand All @@ -117,7 +117,7 @@ runs:
- name: PHPStan test
id: phpstan
if: ${{ inputs.test-phpstan == 'true' }}
uses: woocommerce/grow/run-qit-annotate@actions-v1
uses: woocommerce/grow/run-qit-annotate@actions-v2
with:
type: phpstan
extension: ${{ inputs.extension }}
Expand All @@ -129,7 +129,7 @@ runs:
- name: API test
id: api
if: ${{ inputs.test-api == 'true' }}
uses: woocommerce/grow/run-qit-annotate@actions-v1
uses: woocommerce/grow/run-qit-annotate@actions-v2
with:
type: api
extension: ${{ inputs.extension }}
Expand All @@ -141,7 +141,7 @@ runs:
- name: E2E test
id: e2e
if: ${{ inputs.test-e2e == 'true' }}
uses: woocommerce/grow/run-qit-annotate@actions-v1
uses: woocommerce/grow/run-qit-annotate@actions-v2
with:
type: e2e
extension: ${{ inputs.extension }}
Expand Down

0 comments on commit e0f4a90

Please sign in to comment.