Skip to content

Commit 3c2e6fd

Browse files
authored
use node24 (#42)
1 parent 6afbd92 commit 3c2e6fd

11 files changed

Lines changed: 3064 additions & 2104 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: 20
18+
node-version: 24
1919
- run: npm ci
2020
- run: npm run build
2121
- run: npm run format-check

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
raku:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- uses: Raku/setup-raku@v1 # By default, this sets up the latest rakudo
1818
```
1919
@@ -36,7 +36,7 @@ jobs:
3636
- "2019.11"
3737
runs-on: ${{ matrix.os }}
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: Raku/setup-raku@v1
4141
with:
4242
raku-version: ${{ matrix.raku-version }}

__tests__/installer.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const toolDir = path.join(
66
__dirname,
77
"runner",
88
path.join(Math.random().toString(36).substring(7)),
9-
"tools"
9+
"tools",
1010
);
1111

1212
const tempDir = path.join(
1313
__dirname,
1414
"runner",
1515
path.join(Math.random().toString(36).substring(7)),
16-
"temp"
16+
"temp",
1717
);
1818

1919
process.env["RUNNER_TOOL_CACHE"] = toolDir;
@@ -36,7 +36,7 @@ describe("installer", () => {
3636
it("gets 2020.02.1 build rev 2 for win release", async () => {
3737
const win = await installer.getRelease("2020.02.1", "win", "x86_64");
3838
expect(win?.url).toBe(
39-
"https://rakudo.org/dl/rakudo/rakudo-moar-2020.02.1-02-win-x86_64.zip"
39+
"https://rakudo.org/dl/rakudo/rakudo-moar-2020.02.1-02-win-x86_64.zip",
4040
);
4141
});
4242
it("installs 2020.06 rakudo", async () => {
@@ -47,7 +47,7 @@ describe("installer", () => {
4747
"2020.06-01",
4848
"x86_64",
4949
"bin",
50-
"raku"
50+
"raku",
5151
);
5252
expect(() => fs.statSync(raku)).not.toThrow();
5353
});
@@ -59,7 +59,7 @@ describe("installer", () => {
5959
"2020.11-01",
6060
"x86_64",
6161
"bin",
62-
"raku"
62+
"raku",
6363
);
6464
expect(() => fs.statSync(raku)).not.toThrow();
6565
});

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ inputs:
66
description: 'Version to use. Examples: 2020.06, 2020.05.1, latest'
77
default: 'latest'
88
runs:
9-
using: 'node20'
9+
using: 'node24'
1010
main: 'dist/index.js'

0 commit comments

Comments
 (0)