Skip to content

Commit

Permalink
update to v4 actions and node 20 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarf authored Mar 7, 2024
1 parent 715a21f commit c64a2a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/nvda-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,23 +74,23 @@ jobs:
Invoke-WebRequest $env:ARIA_AT_STATUS_URL -Headers $headers -Method 'POST' -Body $body
# Checkout all repos first (helps cache purposes)
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkout nvda-at-automation driver
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "Prime-Access-Consulting/nvda-at-automation"
path: "nvda-at-automation"

- name: Checkout aria-at ref ${{ inputs.aria_at_ref || 'master' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "w3c/aria-at"
path: "aria-at"
ref: ${{ inputs.aria_at_ref || 'master' }}

- name: Checkout aria-at-automation-harness
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: "w3c/aria-at-automation-harness"
ref: "main"
Expand All @@ -107,10 +107,10 @@ jobs:
out-file-path: "nvda-portable"
extract: false

- name: Use Node.js 16.x
uses: actions/setup-node@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: "npm"
cache-dependency-path: "**/package-lock.json"

Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
Invoke-WebRequest $env:ARIA_AT_STATUS_URL -Headers $headers -Method 'POST' -Body $body
- name: upload *.{log,png}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: |
Expand Down

0 comments on commit c64a2a9

Please sign in to comment.