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

fix(deps): update weekly minor & patch updates #221

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
repository: csesoc/deployment
token: ${{ secrets.GH_TOKEN }}
- name: Install yq - portable yaml processor
uses: mikefarah/yq@v4.34.1
uses: mikefarah/yq@v4.45.1
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
repository: csesoc/deployment
token: ${{ secrets.GH_TOKEN }}
- name: Install yq - portable yaml processor
uses: mikefarah/yq@v4.27.2
uses: mikefarah/yq@v4.45.1
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Grab the latest Node base image
FROM node:20.2-alpine as builder
FROM node:20.18-alpine as builder

# Set the current working directory inside the container
WORKDIR /app
Expand All @@ -15,7 +15,7 @@ RUN npm run build


# Grab the latest Node base image
FROM node:20.2-alpine as runner
FROM node:20.18-alpine as runner

# Set the current working directory inside the container
WORKDIR /app
Expand Down
Loading
Loading