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 Dec 23, 2024
1 parent fac9956 commit 8202475
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: client
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.component }}
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/staging' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: client
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.component }}
push: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/dev' }}
Expand Down
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Grab the latest Node base image
FROM node:21.7.3-alpine as builder
FROM node:22.12.0-alpine as builder
RUN npm i -g pnpm

# Set the current working directory inside the container
Expand Down
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dependency versions should be pinned
FROM node:21.7.3-alpine as builder
FROM node:22.12.0-alpine as builder
RUN npm i -g pnpm
RUN pnpm install @nestjs/cli
WORKDIR /server
Expand All @@ -12,7 +12,7 @@ RUN pnpm i --no-frozen-lockfile
COPY . .
RUN pnpm run build

FROM node:21.7.3-alpine
FROM node:22.12.0-alpine
WORKDIR /server
RUN npm i -g pnpm

Expand Down

0 comments on commit 8202475

Please sign in to comment.