Skip to content

Commit

Permalink
chore(deps): bump Node from 22.5.1 to 22.6.0 (#2424)
Browse files Browse the repository at this point in the history
Signed-off-by: Hidde Beydals <hidde@hhh.computer>
  • Loading branch information
hiddeco authored Aug 12, 2024
1 parent e6f38fb commit 81d085e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:

lint-ui:
runs-on: ubuntu-latest
container:
image: node:20.12.2
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand All @@ -56,7 +54,7 @@ jobs:
- name: Install nodejs
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: "22.5.1"
node-version: "22.6.0"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Run linter
Expand Down Expand Up @@ -132,9 +130,9 @@ jobs:
with:
package_json_file: ui/package.json
- name: Install nodejs
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: "22.5.1"
node-version: "22.6.0"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install nodejs dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ jobs:
with:
package_json_file: ui/package.json
- name: Install nodejs
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: "22.5.1"
node-version: "22.6.0"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Build UI
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
- name: Install nodejs
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: "22.5.1"
node-version: "22.6.0"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Build UI
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
####################################################################################################
# ui-builder
####################################################################################################
FROM --platform=$BUILDPLATFORM docker.io/library/node:22.5.1 AS ui-builder
FROM --platform=$BUILDPLATFORM docker.io/library/node:22.6.0 AS ui-builder

ARG PNPM_VERSION=9.0.3
RUN npm install --global pnpm@${PNPM_VERSION}
Expand Down Expand Up @@ -106,7 +106,7 @@ CMD ["/usr/local/bin/kargo"]
# - supports development
# - not used for official image builds
####################################################################################################
FROM --platform=$BUILDPLATFORM docker.io/library/node:22.5.1 AS ui-dev
FROM --platform=$BUILDPLATFORM docker.io/library/node:22.6.0 AS ui-dev

ARG PNPM_VERSION=9.0.3
RUN npm install --global pnpm@${PNPM_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
publish = "build/"

[build.environment]
NODE_VERSION = "20.8.1"
NODE_VERSION = "22.6.0"

[context.deploy-preview]
ignore = "git diff --quiet main -- docs"

0 comments on commit 81d085e

Please sign in to comment.