Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.14.0'
node-version: '24.14.1'
- uses: ./
- run: earth --secret GITHUB_TOKEN +all
# Below are tests specific to the github actions, which ensure the actions-setup code works with GHA
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.14.0'
node-version: '24.14.1'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -79,7 +79,7 @@ jobs:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.14.0'
node-version: '24.14.1'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -101,7 +101,7 @@ jobs:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.14.0'
node-version: '24.14.1'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -123,7 +123,7 @@ jobs:
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.14.0'
node-version: '24.14.1'
- run: npm install
- run: npm run package
- uses: ./
Expand Down
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG EARTHBUILD_LIB_VERSION=3.0.1
IMPORT github.com/EarthBuild/lib/utils/git:$EARTHBUILD_LIB_VERSION AS git

npm-base:
FROM node:24.14.0-alpine3.23@sha256:7fddd9ddeae8196abf4a3ef2de34e11f7b1a722119f91f28ddf1e99dcafdf114
FROM node:24.14.1-alpine3.23@sha256:eb37f58646a901dc7727cf448cae36daaefaba79de33b5058dab79aa4c04aefb
# renovate: datasource=npm packageName=npm
ENV npm_version=11.11.0
RUN npm i -g npm@$npm_version
Expand Down
Loading