Skip to content

Commit 80d6b67

Browse files
committed
Upgrade actions
1 parent 4c2e99e commit 80d6b67

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/push.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
check:
1414
runs-on: "ubuntu-latest"
1515
steps:
16-
- uses: "actions/checkout@v4"
17-
- uses: "actions/setup-node@v4"
16+
- uses: "actions/checkout@v6"
17+
- uses: "actions/setup-node@v6"
1818
with:
1919
cache: "npm"
2020
node-version: "24"
2121
- run: "npm ci"
2222
- run: "npm run lint"
2323
- run: "npm run test:cover"
2424
- run: "npm run build"
25-
- uses: "actions/upload-artifact@v4"
25+
- uses: "actions/upload-artifact@v5"
2626
with:
2727
if-no-files-found: "error"
2828
name: "build-output"
@@ -35,13 +35,13 @@ jobs:
3535
if: "github.ref == 'refs/heads/main' && github.actor != 'dependabot[bot]'"
3636
runs-on: "ubuntu-latest"
3737
steps:
38-
- uses: "actions/checkout@v4"
39-
- uses: "actions/setup-node@v4"
38+
- uses: "actions/checkout@v6"
39+
- uses: "actions/setup-node@v6"
4040
with:
4141
cache: "npm"
4242
node-version: "24"
4343
- run: "npm ci --omit dev"
44-
- uses: "actions/download-artifact@v4"
44+
- uses: "actions/download-artifact@v5"
4545
with:
4646
name: "build-output"
4747
path: "lib/"

0 commit comments

Comments
 (0)