Skip to content

Commit 4ee7163

Browse files
author
Jacek Gębal
committed
Update build process
1 parent 650d0af commit 4ee7163

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
services:
2121
oracle:
22-
image: gvenzl/oracle-xe:21-slim
22+
image: gvenzl/ooci-oracle-free:slim-faststart
2323
env:
2424
ORACLE_PASSWORD: oracle
2525
ports:
@@ -31,7 +31,7 @@ jobs:
3131
--health-retries 10
3232
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0
3737

@@ -42,7 +42,7 @@ jobs:
4242
run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh
4343

4444
- name: Set up JDK 11
45-
uses: actions/setup-java@v2
45+
uses: actions/setup-java@v5
4646
with:
4747
java-version: '11'
4848
distribution: 'adopt'
@@ -53,7 +53,7 @@ jobs:
5353
gpg-passphrase: MAVEN_GPG_PASSPHRASE
5454

5555
- name: Cache local Maven repository
56-
uses: actions/cache@v2
56+
uses: actions/cache@v4
5757
with:
5858
path: ~/.m2/repository
5959
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
services:
1717
oracle:
18-
image: gvenzl/oracle-xe:21-slim
18+
image: gvenzl/ooci-oracle-free:slim-faststart
1919
env:
2020
ORACLE_PASSWORD: oracle
2121
ports:
@@ -27,7 +27,7 @@ jobs:
2727
--health-retries 10
2828
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333

@@ -38,7 +38,7 @@ jobs:
3838
run: sh ${{ github.workspace }}/scripts/2_install_demo_project.sh
3939

4040
- name: Set up JDK 11
41-
uses: actions/setup-java@v2
41+
uses: actions/setup-java@v5
4242
with:
4343
java-version: '11'
4444
distribution: 'adopt'
@@ -49,7 +49,7 @@ jobs:
4949
gpg-passphrase: MAVEN_GPG_PASSPHRASE
5050

5151
- name: Cache local Maven repository
52-
uses: actions/cache@v2
52+
uses: actions/cache@v4
5353
with:
5454
path: ~/.m2/repository
5555
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)