File tree Expand file tree Collapse file tree 3 files changed +50
-2
lines changed Expand file tree Collapse file tree 3 files changed +50
-2
lines changed Original file line number Diff line number Diff line change 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" 
Original file line number Diff line number Diff line change 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 
Original file line number Diff line number Diff line change 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 >
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 >
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments