@@ -17,10 +17,10 @@ jobs:
1717
1818 steps :
1919 - name : Checkout code
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v6
2121
2222 - name : Setup Node.js ${{ matrix.node-version }}
23- uses : actions/setup-node@v4
23+ uses : actions/setup-node@v6
2424 with :
2525 node-version : ${{ matrix.node-version }}
2626 cache : ' npm'
3939
4040 - name : Upload coverage to Codecov
4141 if : matrix.node-version == 24
42- uses : codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
42+ uses : codecov/codecov-action@v5
4343 with :
44- file : ./coverage/lcov.info
44+ files : ./coverage/lcov.info
4545 flags : unittests
4646 name : codecov-umbrella
4747 fail_ci_if_error : false
@@ -70,10 +70,10 @@ jobs:
7070
7171 steps :
7272 - name : Checkout code
73- uses : actions/checkout@v4
73+ uses : actions/checkout@v6
7474
7575 - name : Setup Node.js
76- uses : actions/setup-node@v4
76+ uses : actions/setup-node@v6
7777 with :
7878 node-version : 24
7979 cache : ' npm'
@@ -95,10 +95,10 @@ jobs:
9595
9696 steps :
9797 - name : Checkout code
98- uses : actions/checkout@v4
98+ uses : actions/checkout@v6
9999
100100 - name : Setup Node.js
101- uses : actions/setup-node@v4
101+ uses : actions/setup-node@v6
102102 with :
103103 node-version : 24
104104 cache : ' npm'
@@ -117,10 +117,10 @@ jobs:
117117
118118 steps :
119119 - name : Checkout code
120- uses : actions/checkout@v4
120+ uses : actions/checkout@v6
121121
122122 - name : Setup Node.js
123- uses : actions/setup-node@v4
123+ uses : actions/setup-node@v6
124124 with :
125125 node-version : 24
126126 cache : ' npm'
@@ -132,7 +132,7 @@ jobs:
132132 run : npm run test:coverage
133133
134134 - name : Generate coverage badge
135- uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
135+ uses : actions/github-script@v8
136136 with :
137137 script : |
138138 const fs = require('fs');
@@ -144,7 +144,7 @@ jobs:
144144 }
145145
146146 - name : Upload coverage reports
147- uses : actions/upload-artifact@v4
147+ uses : actions/upload-artifact@v6
148148 with :
149149 name : coverage-reports
150150 path : |
0 commit comments