Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updates #1605

Closed
wants to merge 1 commit into from
Closed
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
72 changes: 40 additions & 32 deletions playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.8",
"@types/uuid": "^9.0.8",
"typescript": "^5.4.5"
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"@types/uuid": "^10.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"uuid": "^9.0.1"
"uuid": "^10.0.0"
}
}
1 change: 1 addition & 0 deletions playwright/tests/eshop/eshop.app.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ test("eShop on Containers App Basic UI and Functionality Checks", async ({
`Attempt ${testInfo.retry}: Failed to navigate to the endpoint:`,
error
);
throw new Error(`Failed to navigate to the endpoint: ${endpoint}`);
}

// Expect page to have proper URL
Expand Down
2 changes: 1 addition & 1 deletion samples/dapr/nodeapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8-alpine
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN npm install
Expand Down
4 changes: 2 additions & 2 deletions samples/demo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-buster as BUILD
FROM node:20-buster as BUILD
WORKDIR /usr/src/app

COPY package.json package-lock.json ./
Expand All @@ -9,7 +9,7 @@ RUN cd client && npm ci && npm cache clean --force
COPY . .
RUN npm run build

FROM node:18-alpine
FROM node:20-alpine
WORKDIR /usr/src/app

COPY --from=BUILD /usr/src/app/dist ./dist
Expand Down
Loading
Loading