Skip to content

Commit 8611595

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 0173a01 + 6263d57 commit 8611595

File tree

3 files changed

+50
-2
lines changed

3 files changed

+50
-2
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: maven
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: '05:00'
8+
timezone: Asia/Jakarta
9+
open-pull-requests-limit: 10
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"

.github/workflows/maven.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Java CI with Maven
10+
11+
on:
12+
push:
13+
branches: [ "main" ]
14+
pull_request:
15+
branches: [ "main" ]
16+
17+
jobs:
18+
build:
19+
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Set up JDK 23
25+
uses: actions/setup-java@v4
26+
with:
27+
java-version: '23'
28+
distribution: 'temurin'
29+
cache: maven
30+
- name: Build with Maven
31+
run: mvn -B package --file pom.xml
32+
33+
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
34+
- name: Update dependency graph
35+
uses: advanced-security/maven-dependency-submission-action@4f64ddab9d742a4806eeb588d238e4c311a8397d

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<plugin>
4949
<groupId>io.fabric8</groupId>
5050
<artifactId>docker-maven-plugin</artifactId>
51-
<version>0.43.0</version>
51+
<version>0.45.1</version>
5252
<configuration>
5353
<images>
5454
<image>
@@ -87,7 +87,7 @@
8787
<plugin>
8888
<groupId>com.google.cloud.tools</groupId>
8989
<artifactId>jib-maven-plugin</artifactId>
90-
<version>3.3.2</version>
90+
<version>3.4.4</version>
9191
<configuration>
9292
<from>
9393
<image>amazoncorretto:23-alpine3.21</image>

0 commit comments

Comments
 (0)