Skip to content

Commit

Permalink
chore: fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
damingerdai committed Apr 10, 2023
1 parent 5c30a73 commit 06b8694
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 114 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java-version: [ 17, 18 ]
node-version: [ 16 ]
java-version: [ 17 ]
node-version: [ 18 ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
matrix:
java-version: [ 17 ]
node-version: [ 16 ]
node-version: [ 18 ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM gradle:7.5.1-jdk17-alpine AS builder
FROM gradle:8.0.2-jdk17-alpine AS builder
COPY src /usr/src/app/src
COPY *.gradle /usr/src/app
RUN gradle build -x test --project-dir /usr/src/app

FROM openjdk:18.0.2-jdk-oracle
FROM openjdk:20-jdk-slim
WORKDIR /app
COPY --from=builder /usr/src/app/build/libs/*.jar /app/app.jar
ENV TZ=Asia/Shanghai
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
db:
image: postgres:14
image: postgres:15
ports:
- 5432:5432
volumes:
Expand Down
108 changes: 0 additions & 108 deletions pom.xml

This file was deleted.

0 comments on commit 06b8694

Please sign in to comment.