Skip to content

Commit

Permalink
chore(deps): update ci-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 28, 2023
1 parent c0833c9 commit f00b3a6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit f00b3a6

Please sign in to comment.