Skip to content

Commit d21e5b4

Browse files
authored
Prepare 0.8.1 release (#311)
* Prepare 0.8.1 release * setup node * Update releaseNotes.md
1 parent d8d2e74 commit d21e5b4

File tree

8 files changed

+75
-84
lines changed

8 files changed

+75
-84
lines changed

.github/workflows/build.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v5
16-
- run: npm install
16+
- uses: actions/setup-node@v6
17+
with:
18+
node-version: 24
19+
cache: npm
20+
- run: npm ci
1721
name: Install dependencies
1822
- run: npm run bootstrap
1923
name: Bootstrap the packages
@@ -32,7 +36,11 @@ jobs:
3236
needs: format-and-lint
3337
steps:
3438
- uses: actions/checkout@v5
35-
- run: npm install
39+
- uses: actions/setup-node@v6
40+
with:
41+
node-version: 24
42+
cache: npm
43+
- run: npm ci
3644
name: Install dependencies
3745
- run: npm run bootstrap
3846
name: Bootstrap the packages
@@ -47,6 +55,10 @@ jobs:
4755
needs: format-and-lint
4856
steps:
4957
- uses: actions/checkout@v5
58+
- uses: actions/setup-node@v6
59+
with:
60+
node-version: 24
61+
cache: npm
5062
- run: sed -i "s|{{PATHTOREPO}}|$(pwd)|" packages/k8s/tests/test-kind.yaml
5163
name: Setup kind cluster yaml config
5264
- uses: helm/[email protected]

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v5
1414

15+
- uses: actions/setup-node@v6
16+
with:
17+
node-version: 24
18+
cache: npm
1519
- name: Install dependencies
1620
run: npm install
1721

package-lock.json

Lines changed: 10 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "hooks",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Three projects are included - k8s: a kubernetes hook implementation that spins up pods dynamically to run a job - docker: A hook implementation of the runner's docker implementation - A hook lib, which contains shared typescript definitions and utilities that the other packages consume",
55
"main": "",
66
"directories": {
77
"doc": "docs"
88
},
99
"scripts": {
1010
"test": "npm run test --prefix packages/docker && npm run test --prefix packages/k8s",
11-
"bootstrap": "npm install --prefix packages/hooklib && npm install --prefix packages/k8s && npm install --prefix packages/docker",
11+
"bootstrap": "npm install --prefix packages/hooklib && npm ci --prefix packages/k8s && npm ci --prefix packages/docker",
1212
"format": "prettier --write '**/*.ts'",
1313
"format-check": "prettier --check '**/*.ts'",
1414
"lint": "eslint packages/**/*.ts",

0 commit comments

Comments
 (0)