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

chore(deps): update ci-actions #1070

Merged
merged 1 commit into from
Sep 30, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
ref: migration
- name: Install yq - portable yaml processor
uses: mikefarah/yq@v4.32.2
uses: mikefarah/yq@v4.35.2
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion backend/dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Sets up the backend, opening it to reload on change
# Python image
FROM python:3.10.5-slim
FROM python:3.11.5-slim

# install nodemon

Expand Down
2 changes: 1 addition & 1 deletion backend/init-mongo.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# speeds up development, since we can rebuild and create new containers without
# overwriting every time.

FROM python:3.10.5
FROM python:3.11.5

WORKDIR /util

Expand Down
2 changes: 1 addition & 1 deletion backend/production.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sets up the backend, without writing data into the database.

# Python image
FROM python:3.10.5-slim
FROM python:3.11.5-slim

# gcc required for python-Levenshtein
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion frontend/production.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN npm ci
COPY . .
RUN npm run build

FROM caddy:2.6.2-alpine
FROM caddy:2.7.4-alpine
COPY ./Caddyfile /etc/caddy/Caddyfile
COPY --from=builder /app/build /srv

Loading