Skip to content

Commit 148ba9f

Browse files
authored
fix: deprecation warnings (#193)
1 parent 3178341 commit 148ba9f

8 files changed

Lines changed: 1909 additions & 2813 deletions

File tree

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
steps:
1414
- name: ☑️ Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: 📦 Symbols
1818
uses: ./
@@ -24,4 +24,4 @@ jobs:
2424
version: "1.0"
2525
directory: "spec/support"
2626
files: "**/*.sym"
27-
node-version: '22'
27+
node-version: '24'

.github/workflows/sea.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232

3333
steps:
3434
- name: ☑️ Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636

3737
- name: ⚙️ Setup Node.js
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v6
3939
with:
40-
node-version: '22'
40+
node-version: '24'
4141

4242
- name: 🏗️ Install Dependencies
4343
run: npm ci
@@ -46,7 +46,7 @@ jobs:
4646
run: npm run ${{ matrix.run_script }} # Executes the script based on the operating system
4747

4848
- name: ⬆️ Upload Artifacts
49-
uses: actions/upload-artifact@v4
49+
uses: actions/upload-artifact@v7
5050
with:
5151
name: ${{ matrix.artifact_name }}
5252
path: dist/${{ matrix.file_name }} # Uploads the artifact with a platform-specific name and path

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: ☑️ Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: ⚙️ Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
20-
node-version: '22'
20+
node-version: '24'
2121
cache: 'npm'
2222

2323
- name: 🏗️ Install Dependencies

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ Use the `symbol-upload` action in your [GitHub Actions](https://github.com/featu
3232
version: "your-version"
3333
files: "**/*.{pdb,exe,dll}"
3434
directory: "your-build-directory"
35-
node-version: "22"
35+
node-version: "24"
36+
symbol-upload-version: "10.3.1"
3637
dumpSyms: false
3738
```
3839

action.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ inputs:
4848
description: "Node.js version to use"
4949
type: string
5050
required: false
51-
default: '22'
51+
default: '24'
52+
symbol-upload-version:
53+
description: "Version of @bugsplat/symbol-upload to install from npm"
54+
type: string
55+
required: false
56+
default: '10.3.1'
5257
dumpSyms:
5358
description: "Use dumpSyms to generate symbols"
5459
type: boolean
@@ -59,13 +64,13 @@ runs:
5964
using: composite
6065
steps:
6166
- name: Set up Node.js
62-
uses: actions/setup-node@v4
67+
uses: actions/setup-node@v6
6368
with:
6469
node-version: ${{ inputs.node-version }}
6570

6671
- name: Install symbol-upload
6772
shell: pwsh
68-
run: npm i -g @bugsplat/symbol-upload@10.2.4
73+
run: npm i -g @bugsplat/symbol-upload@${{ inputs.symbol-upload-version }}
6974

7075
- name: Run symbol-upload
7176
shell: pwsh

0 commit comments

Comments
 (0)