Skip to content

Commit 58d342c

Browse files
committed
Merge branch 'master' into support/ehcache2
2 parents ae02e52 + a4a1ded commit 58d342c

10 files changed

Lines changed: 45 additions & 22 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
matrix:
1717
cache: [maven]
1818
distribution: [temurin]
19-
java: [21, 25, 26-ea]
19+
java: [21, 25, 26]
2020
os: [macos-latest, ubuntu-latest, windows-latest]
2121
fail-fast: false
2222
max-parallel: 6
2323
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
2424

2525
steps:
26-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
26+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2727
- name: Setup Java ${{ matrix.java }} ${{ matrix.distribution }}
28-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
28+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
2929
with:
3030
cache: ${{ matrix.cache }}
3131
distribution: ${{ matrix.distribution }}

.github/workflows/cleanup.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Cleanup Old Workflow Runs
2+
on:
3+
schedule:
4+
- cron: '0 0 * * *' # daily at midnight
5+
workflow_dispatch:
6+
7+
permissions:
8+
actions: write
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
cleanup:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: Mattraks/delete-workflow-runs@0cf693bc9909e5e867ee8f27b813224ba862939c # v2
19+
with:
20+
repository: ${{ github.repository }}
21+
retain_days: 30
22+
token: ${{ github.token }}

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
27+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2828

2929
- name: Setup Java
30-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
30+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
3131
with:
3232
cache: maven
3333
distribution: 'temurin'
3434
java-version: 25
3535

3636
- name: Initialize CodeQL
37-
uses: github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98 # v4
37+
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
3838
with:
3939
queries: +security-and-quality
4040

4141
- name: Autobuild
42-
uses: github/codeql-action/autobuild@0d579ffd059c29b07949a3cce3983f0780820c98 # v4
42+
uses: github/codeql-action/autobuild@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4
4343

4444
- name: Perform CodeQL Analysis
45-
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98 # v4
45+
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4

.github/workflows/coveralls.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 30
1616
steps:
17-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
17+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
1818
- name: Setup Java
19-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
19+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
2020
with:
2121
cache: maven
2222
distribution: temurin

.github/workflows/site.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
timeout-minutes: 60
2020
steps:
21-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
21+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2222
- name: Setup Java
23-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
23+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
2424
with:
2525
cache: maven
2626
distribution: temurin

.github/workflows/sonar.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
timeout-minutes: 30
2323
steps:
24-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
24+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2525
with:
2626
# Disabling shallow clone is recommended for improving relevancy of reporting
2727
fetch-depth: 0
2828
- name: Setup Java
29-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
29+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
3030
with:
3131
cache: maven
3232
distribution: temurin

.github/workflows/sonatype.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
timeout-minutes: 30
1919
steps:
20-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
20+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
2121
- name: Setup Java
22-
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
22+
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5
2323
with:
2424
cache: maven
2525
distribution: temurin
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
distributionSha256Sum=5af3b743dd8b876b5c45da33b676251e5f1687712644abb4ee519ca56e1d89ce
12
distributionType=source
2-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.13/apache-maven-3.9.13-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
4+
wrapperSha256Sum=4e2fbf6554bc8a4702cdfdd3bef464f423393d784ddbb037216320ce55d5e4e1
35
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.4/maven-wrapper-3.3.4.jar
46
wrapperVersion=3.3.4

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ MyBatis Ehcache Extension
33

44
[![Java CI](https://github.com/mybatis/ehcache-cache/actions/workflows/ci.yaml/badge.svg)](https://github.com/mybatis/ehcache-cache/actions/workflows/ci.yaml)
55
[![Coverage Status](https://coveralls.io/repos/mybatis/ehcache-cache/badge.svg?branch=master&service=github)](https://coveralls.io/github/mybatis/ehcache-cache?branch=master)
6-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/org.mybatis.caches/mybatis-ehcache/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.mybatis.caches/mybatis-ehcache)
7-
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/s/https/oss.sonatype.org/org.mybatis.caches/mybatis-ehcache.svg)](https://oss.sonatype.org/content/repositories/snapshots/org/mybatis/caches/mybatis-ehcache/)
6+
[![Maven Central](https://img.shields.io/maven-central/v/org.mybatis.caches/mybatis-ehcache?label=maven%20central)](https://central.sonatype.com/artifact/org.mybatis.caches/mybatis-ehcache)
87
[![License](https://img.shields.io/:license-apache-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
98

109
![mybatis-logo](https://mybatis.org/images/mybatis-logo.png)

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.mybatis</groupId>
2525
<artifactId>mybatis-parent</artifactId>
26-
<version>51</version>
26+
<version>52</version>
2727
<relativePath />
2828
</parent>
2929

@@ -71,7 +71,7 @@
7171
<project.build.outputTimestamp>1773016647</project.build.outputTimestamp>
7272

7373
<!-- External Modules -->
74-
<slf4j.version>2.0.17</slf4j.version>
74+
<slf4j.version>2.0.18</slf4j.version>
7575
</properties>
7676

7777
<dependencies>
@@ -92,7 +92,7 @@
9292
<dependency>
9393
<groupId>org.junit.jupiter</groupId>
9494
<artifactId>junit-jupiter-engine</artifactId>
95-
<version>6.0.3</version>
95+
<version>6.1.0</version>
9696
<scope>test</scope>
9797
</dependency>
9898

0 commit comments

Comments
 (0)