Skip to content

Commit

Permalink
Upgrade Node version to 20.11.0 (#7511)
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen authored Feb 8, 2024
1 parent d8bb813 commit ff701c1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .buildkite/scripts/lifecycle/pre_command.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export GCE_ACCOUNT
GITHUB_TOKEN=$(retry 5 vault read -field=github_token $GITHUB_ACCOUNT)
export GITHUB_TOKEN

DOCKER_BASE_IMAGE=docker.elastic.co/eui/ci:6.1
DOCKER_BASE_IMAGE=docker.elastic.co/eui/ci:6.2
export DOCKER_BASE_IMAGE

GCE_IMAGE=google/cloud-sdk:slim
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.10.0
20.11.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "lib",
"module": "es",
"types": "eui.d.ts",
"docker_image": "20.10.0",
"docker_image": "20.11.0",
"engines": {
"node": "16.x || 18.x || >=20.x"
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/zenato/docker-puppeteer/blob/master/Dockerfile

# >=12.0 required (for cypress). v18 is LTS.
FROM --platform=linux/amd64 node:20.10.0-slim
FROM --platform=linux/amd64 node:20.11.0-slim

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
2 changes: 1 addition & 1 deletion src/components/selectable/selectable.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ describe('EuiSelectable', () => {

cy.get('[data-test-subj="truncatedText"]')
.first()
.should('have.text', 'Lorem ipsum …iscing elit.');
.should('have.text', 'Lorem ipsum …piscing elit.');
});

it('correctly accounts for the keyboard focus badge', () => {
Expand Down

0 comments on commit ff701c1

Please sign in to comment.