Skip to content

Commit 8d49d55

Browse files
refactor: updating GH actions (#8)
* refactor: updating GH action Prevent the pipeline throwing an error: > Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ * Update test.yml * Update test.yml * Update codeql-analysis.yml * ci: update actions versions * chore: upgrade package versions --------- Co-authored-by: jlp-craigmorten <[email protected]>
1 parent cb5741d commit 8d49d55

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+359
-2916
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,35 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [macos-12, macos-13, macos-14]
16+
os: [macos-13, macos-14, macos-15]
1717
record: [true, false]
1818
ignoreTccDb: [true, false]
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: actions/setup-node@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-node@v4
2222
with:
2323
node-version: 20
2424
- name: Guidepup Setup
2525
uses: ./
2626
with:
2727
record: ${{ matrix.record }}
2828
ignoreTccDb: ${{ matrix.ignoreTccDb }}
29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
if: always()
3131
with:
32-
name: artifacts
32+
name: artifacts-${{ matrix.os }}-${{ matrix.record }}-${{ matrix.ignoreTccDb }}
3333
path: |
3434
**/recordings/**/*
3535
3636
test-windows:
3737
runs-on: ${{ matrix.os }}
3838
strategy:
3939
matrix:
40-
os: [windows-2019, windows-2022]
40+
os: [windows-2022, windows-2025]
4141
nvdaInstallDir: ["", "D:\\a\\setup-action\\setup-action\\nvda"]
4242
steps:
43-
- uses: actions/checkout@v3
44-
- uses: actions/setup-node@v3
43+
- uses: actions/checkout@v4
44+
- uses: actions/setup-node@v4
4545
with:
4646
node-version: 20
4747
- name: Guidepup Setup

node_modules/.bin/uuid

Lines changed: 0 additions & 1 deletion
This file was deleted.

node_modules/.yarn-integrity

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/README.md

Lines changed: 151 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js

Lines changed: 8 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.d.ts

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)