Skip to content
Merged
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@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.13.1'
node-version: '24.14.0'
- 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@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.13.1'
node-version: '24.14.0'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -79,7 +79,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.13.1'
node-version: '24.14.0'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -101,7 +101,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.13.1'
node-version: '24.14.0'
- run: npm install
- run: npm run package
- uses: ./
Expand All @@ -123,7 +123,7 @@ jobs:
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
cache: ${{ !env.ACT && 'npm' || '' }}
node-version: '24.13.1'
node-version: '24.14.0'
- 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.13.1-alpine3.23@sha256:4f696fbf39f383c1e486030ba6b289a5d9af541642fc78ab197e584a113b9c03
FROM node:24.14.0-alpine3.23@sha256:7fddd9ddeae8196abf4a3ef2de34e11f7b1a722119f91f28ddf1e99dcafdf114
# renovate: datasource=npm packageName=npm
ENV npm_version=11.9.0
RUN npm i -g npm@$npm_version
Expand Down
Loading