Skip to content

Commit bbc93d8

Browse files
author
David Buzinski
committed
update action versions and specify specific node version
1 parent 58df522 commit bbc93d8

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/bat.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
name: Build and Test
22
on: [push]
3+
34
permissions:
45
contents: read
56

67
jobs:
78
bat:
89
name: Build and Test
9-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1011
steps:
11-
- uses: actions/checkout@v5
12-
- uses: actions/setup-node@v5
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-node@v6
1314
with:
14-
node-version: 24
15+
node-version: 24.14.0
1516
- name: Perform npm tasks
1617
run: npm run ci

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
outputs:
1313
tag: ${{ steps.update-package-version.outputs.version }}
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Configure git
1717
run: |
1818
git config user.name 'Release Action'
1919
git config user.email '<>'
20-
- uses: actions/setup-node@v5
20+
- uses: actions/setup-node@v6
2121
with:
22-
node-version: 24
22+
node-version: 24.14.0
2323

2424
# Call `npm version`. It increments the version and commits the changes.
2525
# We'll save the output (new version string) for use in the following

0 commit comments

Comments
 (0)