Skip to content

Commit d1a8235

Browse files
authored
Merge pull request #144 from mvallim/feature/update-workflow
Auto-created pull request into `develop` from `feature/update-workflow`
2 parents 37b03a9 + 60dc1fc commit d1a8235

6 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/cd-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Set up JDK
20-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@v5
2121
with:
2222
java-version: 8
2323
distribution: 'corretto'
@@ -27,7 +27,7 @@ jobs:
2727
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
2828

2929
- name: Cache Maven packages
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-deploy-${{ hashFiles('**/pom.xml') }}

.github/workflows/cd-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
target-branch: ${{ steps.environment.outputs.target-branch }}
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Set up JDK
26-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@v5
2727
with:
2828
java-version: 17
2929
distribution: "corretto"

.github/workflows/ci-gates.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515

1616
- name: Set up JDK 17
17-
uses: actions/setup-java@v4
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: 17
2020
distribution: "corretto"
2121
cache: "maven"
2222

2323
- name: Cache Maven packages
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: |
2727
~/.sonar/cache

.github/workflows/ci-maven.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
java-version: [8, 11, 17, 21]
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Set up JDK
17-
uses: actions/setup-java@v4
17+
uses: actions/setup-java@v5
1818
with:
1919
java-version: ${{ matrix.java-version }}
2020
distribution: "corretto"
2121
cache: "maven"
2222

2323
- name: Cache Maven packages
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.m2
2727
key: ${{ runner.os }}-build-${{ hashFiles('**/pom.xml') }}-${{ matrix.java-version }}
@@ -37,17 +37,17 @@ jobs:
3737
java-version: [8, 11, 17, 21]
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141

4242
- name: Set up JDK
43-
uses: actions/setup-java@v4
43+
uses: actions/setup-java@v5
4444
with:
4545
java-version: ${{ matrix.java-version }}
4646
distribution: "corretto"
4747
cache: "maven"
4848

4949
- name: Cache Maven packages
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ~/.m2
5353
key: ${{ runner.os }}-test-${{ hashFiles('**/pom.xml') }}-${{ matrix.java-version }}

.github/workflows/ci-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v6
2929

3030
- name: Create branch
3131
run: |

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
</properties>
4848

4949
<scm>
50-
<url>scm:git:https://github.com:mvallim/java-fluent-validator.git</url>
51-
<connection>scm:git:https://ithub.com:mvallim/java-fluent-validator.git</connection>
52-
<developerConnection>scm:git:https://github.com:mvallim/java-fluent-validator.git</developerConnection>
50+
<url>scm:git:https://github.com/mvallim/java-fluent-validator.git</url>
51+
<connection>scm:git:https://ithub.com/mvallim/java-fluent-validator.git</connection>
52+
<developerConnection>scm:git:https://github.com/mvallim/java-fluent-validator.git</developerConnection>
5353
<tag>HEAD</tag>
5454
</scm>
5555

0 commit comments

Comments
 (0)