Skip to content

Commit f74d8bd

Browse files
committed
Merge branch 'main' into feature/copy-status-info-pasting-into-support-channels
2 parents 806fd9c + a909ae1 commit f74d8bd

File tree

4 files changed

+152
-148
lines changed

4 files changed

+152
-148
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Upload Cypress Screenshots
3131
if: always() # Run this step even if tests fail
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
3333
with:
3434
name: cypress-screenshots
3535
path: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Use the latest LTS version of Node.js
22
# https://hub.docker.com/_/node
3-
FROM node:22-alpine3.20 AS build-stage
3+
FROM node:22-alpine3.20@sha256:40be979442621049f40b1d51a26b55e281246b5de4e5f51a18da7beb6e17e3f9 AS build-stage
44
WORKDIR /usr/src/app
55

66
# Copy package.json and package-lock.json
@@ -16,7 +16,7 @@ RUN npm run build
1616

1717
# Use the latest LTS version of Nginx as the serving image
1818
# https://hub.docker.com/_/nginx
19-
FROM nginx:1.27.4-alpine-slim
19+
FROM nginx:1.27.4-alpine-slim@sha256:b05aceb5ec1844435cae920267ff9949887df5b88f70e11d8b2871651a596612
2020

2121
COPY nginx.conf /etc/nginx/templates/default.conf.template
2222
COPY --from=build-stage /usr/src/app/dist /usr/share/nginx/html

0 commit comments

Comments
 (0)