Skip to content

Commit 867c220

Browse files
committed
Version 0.22.0
1 parent 6aa568e commit 867c220

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/release.yml

+10-6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ on:
77

88
jobs:
99
release:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/[email protected]
12+
- uses: actions/checkout@v3
13+
- name: Install GraphViz
14+
run: sudo apt-get install graphviz -y
1315
- name: Set up JDK 11
14-
uses: actions/setup-java@v3.12.0
16+
uses: actions/setup-java@v3
1517
with:
1618
java-version: 11
1719
distribution: temurin
@@ -31,11 +33,13 @@ jobs:
3133
env:
3234
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3335
publish_dockerhub:
34-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3537
steps:
36-
- uses: actions/[email protected]
38+
- uses: actions/checkout@v3
39+
- name: Install GraphViz
40+
run: sudo apt-get install graphviz -y
3741
- name: Set up JDK 11
38-
uses: actions/setup-java@v3.12.0
42+
uses: actions/setup-java@v3
3943
with:
4044
java-version: 11
4145
distribution: temurin

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>kroki</artifactId>
66
<name>kroki</name>
77
<packaging>pom</packaging>
8-
<version>0.21.3</version>
8+
<version>0.22.0</version>
99
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1111
</properties>

server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>kroki</artifactId>
77
<groupId>io.kroki</groupId>
8-
<version>0.21.3</version>
8+
<version>0.22.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)