Skip to content

Commit 7354d86

Browse files
Merge remote-tracking branch 'origin/master'
2 parents 4733489 + 4122439 commit 7354d86

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/docker-image.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Build the Docker image
18+
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.flywaydb</groupId>
6363
<artifactId>flyway-database-postgresql</artifactId>
64-
<version>11.7.1</version>
64+
<version>11.7.2</version>
6565
<scope>runtime</scope>
6666
</dependency>
6767
<dependency>

0 commit comments

Comments
 (0)