Skip to content

Commit

Permalink
Merge pull request #22 from cloud-pi-native/tech/upgrade-dependencies
Browse files Browse the repository at this point in the history
chore: ⬆️ upgrade dependencies
  • Loading branch information
this-is-tobi authored Mar 10, 2024
2 parents edbe147 + 9f7feb1 commit 82e9683
Show file tree
Hide file tree
Showing 5 changed files with 171 additions and 139 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
packages: write
steps:
- name: Checks-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
contents: write
steps:
- name: Checks-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Pre release new version
run: |
Expand All @@ -32,7 +32,7 @@ jobs:
packages: write
steps:
- name: Checks-out repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage
FROM docker.io/node:20.9.0-bullseye-slim AS dev
FROM docker.io/node:20.11.1-bullseye-slim AS dev

WORKDIR /app
RUN npm install --location=global pnpm
Expand All @@ -16,7 +16,7 @@ RUN pnpm run build


# Prod stage
FROM docker.io/bitnami/nginx:1.25.2 AS prod
FROM docker.io/bitnami/nginx:1.24.0 AS prod

USER 0
COPY --chown=1001:0 --chmod=770 --from=build /app/docs/.vitepress/dist /opt/bitnami/nginx/html/
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"preview": "vitepress preview docs"
},
"devDependencies": {
"vitepress": "1.0.0-rc.27"
"vitepress": "1.0.0-rc.45"
},
"volta": {
"node": "20.9.0"
"node": "20.11.1"
}
}
Loading

0 comments on commit 82e9683

Please sign in to comment.