Skip to content

Commit a1bf46f

Browse files
committed
update: merged with master
2 parents 0fa4559 + e355e84 commit a1bf46f

5 files changed

Lines changed: 14 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212

13-
env:
14-
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
15-
16-
1713
steps:
1814
- name: Checkout do código
1915
uses: actions/checkout@v4
@@ -28,8 +24,11 @@ jobs:
2824
- name: Build + Testes
2925
run: mvn clean verify -B
3026

31-
# - name: Checkstyle
32-
# run: mvn checkstyle:check
27+
- name: Cache do Maven
28+
uses: actions/cache@v5
29+
with:
30+
path: ~/.m2
31+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
3332

3433
- name: PMD
3534
run: mvn pmd:check
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
wrapperVersion=3.3.4
22
distributionType=only-script
3-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.14/apache-maven-3.9.14-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.15/apache-maven-3.9.15-bin.zip

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# =========================
22
# 1. Build da aplicação
33
# =========================
4-
FROM maven:3.9.9-eclipse-temurin-21 AS build
4+
FROM maven:3.9.14-eclipse-temurin-21 AS build
55

66
WORKDIR /app
77

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>org.postgresql</groupId>
4747
<artifactId>postgresql</artifactId>
48-
<version>42.7.3</version>
48+
<version>42.7.10</version>
4949
</dependency>
5050

5151
<dependency>

renovate.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
]
6+
}

0 commit comments

Comments
 (0)