Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/build_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ jobs:

steps:
- name: Checkout the latest code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup java 8
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 8
java-version: '8'
distribution: 'temurin'

- name: Cache maven artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/build_pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ jobs:
java: [8, 11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup java
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'

- name: Caches maven artifacts
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
Binary file modified modules/samples/services/SecureStockQuoteService/store.jks
Binary file not shown.
Binary file modified repository/conf/sample/resources/security/store.jks
Binary file not shown.
Loading