Compare commits
17 commits
Author | SHA1 | Date | |
---|---|---|---|
|
354dc5d764 | ||
|
63b7664efd | ||
|
ec83c48d9a | ||
|
a20d8deb48 | ||
|
5aa38a79fc | ||
|
a320cd4bda | ||
|
5232533372 | ||
|
e4a9809bd7 | ||
|
bcb8948efd | ||
|
77d01bcd6c | ||
|
a856af2668 | ||
|
0196208601 | ||
|
ee56f4d2f9 | ||
|
2870cfc400 | ||
|
1521c1570f | ||
|
caa110c60a | ||
|
c4d4e2f9e9 |
4 changed files with 12 additions and 12 deletions
4
.github/workflows/build.yaml
vendored
4
.github/workflows/build.yaml
vendored
|
@ -13,10 +13,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- run: git config --global user.name "${{ vars.KOKUWA_IO_BOT_NAME }}"
|
- run: git config --global user.name "${{ vars.KOKUWA_IO_BOT_NAME }}"
|
||||||
- run: git config --global user.email "${{ vars.KOKUWA_IO_BOT_EMAIL }}"
|
- run: git config --global user.email "${{ vars.KOKUWA_IO_BOT_EMAIL }}"
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GIT_ACTION_TOKEN }}
|
token: ${{ secrets.GIT_ACTION_TOKEN }}
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
|
10
.github/workflows/pr.yaml
vendored
10
.github/workflows/pr.yaml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
||||||
yaml:
|
yaml:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: ibiqlik/action-yamllint@v3
|
- uses: ibiqlik/action-yamllint@v3
|
||||||
with:
|
with:
|
||||||
format: colored
|
format: colored
|
||||||
|
@ -16,7 +16,7 @@ jobs:
|
||||||
markdown:
|
markdown:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: avto-dev/markdown-lint@v1
|
- uses: avto-dev/markdown-lint@v1
|
||||||
with:
|
with:
|
||||||
args: /github/workspace
|
args: /github/workspace
|
||||||
|
@ -26,8 +26,8 @@ jobs:
|
||||||
env:
|
env:
|
||||||
MAVEN_ARGS: --batch-mode --color=always --no-transfer-progress -Dmaven.test.redirectTestOutputToFile=false
|
MAVEN_ARGS: --batch-mode --color=always --no-transfer-progress -Dmaven.test.redirectTestOutputToFile=false
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
@ -35,7 +35,7 @@ jobs:
|
||||||
- run: mvn $MAVEN_ARGS dependency:go-offline
|
- run: mvn $MAVEN_ARGS dependency:go-offline
|
||||||
- run: mvn $MAVEN_ARGS verify
|
- run: mvn $MAVEN_ARGS verify
|
||||||
- run: mvn $MAVEN_ARGS site
|
- run: mvn $MAVEN_ARGS site
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
path: target/site
|
path: target/site
|
||||||
|
|
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
|
@ -10,16 +10,16 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- run: git config --global user.name "${{ vars.KOKUWA_IO_BOT_NAME }}"
|
- run: git config --global user.name "${{ vars.KOKUWA_IO_BOT_NAME }}"
|
||||||
- run: git config --global user.email "${{ vars.KOKUWA_IO_BOT_EMAIL }}"
|
- run: git config --global user.email "${{ vars.KOKUWA_IO_BOT_EMAIL }}"
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GIT_ACTION_TOKEN }}
|
token: ${{ secrets.GIT_ACTION_TOKEN }}
|
||||||
- uses: crazy-max/ghaction-import-gpg@v5
|
- uses: crazy-max/ghaction-import-gpg@v6
|
||||||
with:
|
with:
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||||
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
||||||
git_user_signingkey: true
|
git_user_signingkey: true
|
||||||
git_commit_gpgsign: true
|
git_commit_gpgsign: true
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: temurin
|
distribution: temurin
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
|
4
pom.xml
4
pom.xml
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>io.kokuwa.maven</groupId>
|
<groupId>io.kokuwa.maven</groupId>
|
||||||
<artifactId>maven-parent</artifactId>
|
<artifactId>maven-parent</artifactId>
|
||||||
<version>0.6.9</version>
|
<version>0.6.18</version>
|
||||||
<relativePath />
|
<relativePath />
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
<!-- ============================= Versions ============================== -->
|
<!-- ============================= Versions ============================== -->
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
|
|
||||||
<version.io.micronaut>3.9.4</version.io.micronaut>
|
<version.io.micronaut>3.10.4</version.io.micronaut>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue