Skip to content

Commit ccb01fc

Browse files
committed
chore: remove install glob
1 parent 849fab7 commit ccb01fc

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/release-please-validate.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ jobs:
1313
rp-validate:
1414
runs-on: ubuntu-latest
1515
container:
16-
image: node:20
16+
image: node:22
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v5
2020

21-
- name: Install glob
22-
run: npm install glob
23-
2421
- name: Ensure Release Please Config and Manifest are in sync with the repository
2522
run: node scripts/check-release-please.mjs

scripts/check-release-please.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
* limitations under the License.
1515
*/
1616

17-
import path from 'path';
18-
import { readFileSync } from 'fs';
19-
import { globSync } from 'glob';
17+
import path from 'node:path';
18+
import { globSync, readFileSync } from 'node:fs';
2019

2120
/*
2221
Enumerates through

0 commit comments

Comments
 (0)