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 #580

Open
wants to merge 1 commit into
base: dev
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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
token: ${{ secrets.GH_TOKEN }}
ref: migration
- name: Install yq - portable yaml processor
uses: mikefarah/yq@v4.44.3
uses: mikefarah/yq@v4.45.1
- name: Update deployment
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
1,194 changes: 842 additions & 352 deletions app/package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"dependencies": {
"@emotion/native": "^11.10.6",
"@emotion/react": "^11.10.6",
"@expo/metro-config": "^0.18.0",
"@react-native/metro-config": "^0.76.0",
"@expo/metro-config": "^0.19.0",
"@react-native/metro-config": "^0.77.0",
"@react-navigation/bottom-tabs": "^6.5.5",
"@react-navigation/native": "^6.1.4",
"@react-navigation/native-stack": "^6.9.12",
Expand All @@ -22,11 +22,11 @@
"expo": "~50.0.0",
"expo-status-bar": "~1.12.0",
"react": "~18.3.0",
"react-native": "0.76.1",
"react-native": "0.77.0",
"react-native-calendars": "^1.1299.0",
"react-native-maps": "1.18.2",
"react-native-maps": "1.20.1",
"react-native-material": "^0.0.4",
"react-native-safe-area-context": "4.14.0",
"react-native-safe-area-context": "4.14.1",
"react-native-screens": "~3.35.0",
"typescript": "^5.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions backend.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.11-alpine as builder
FROM node:22.13-alpine as builder

# Set the current working directory inside the container
WORKDIR /app/backend
Expand All @@ -13,7 +13,7 @@ COPY /common ../common

RUN npm run build

FROM node:22.11-alpine as runner
FROM node:22.13-alpine as runner
WORKDIR /app

COPY backend/package.json backend/package-lock.json ./
Expand Down
Loading