Skip to content

Commit 178c362

Browse files
authored
Merge pull request #24 from sanshengshui/develop-0.7.3
update actions release.yaml
2 parents 302b36b + 8d64cc3 commit 178c362

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030
version:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434

3535
- name: 'Set up Java'
36-
uses: actions/setup-java@v3
36+
uses: actions/setup-java@v4
3737
with:
38-
distribution: zulu
39-
java-version: 21
38+
distribution: 'zulu'
39+
java-version: '21'
4040

4141
- name: 'Cache Maven packages'
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: ~/.m2
4545
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -89,7 +89,7 @@ jobs:
8989

9090
steps:
9191
- name: 'Download all build artifacts'
92-
uses: actions/download-artifact@v2
92+
uses: actions/download-artifact@v4
9393

9494
- name: 'Read HEAD ref'
9595
id: head
@@ -98,7 +98,7 @@ jobs:
9898
path: artifacts/HEAD
9999

100100
- name: 'Check out repository'
101-
uses: actions/checkout@v3
101+
uses: actions/checkout@v4
102102
with:
103103
ref: ${{ steps.head.outputs.content }}
104104

@@ -123,7 +123,7 @@ jobs:
123123

124124

125125
- name: 'Cache Maven packages'
126-
uses: actions/cache@v3
126+
uses: actions/cache@v4
127127
with:
128128
path: ~/.m2
129129
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -150,7 +150,7 @@ jobs:
150150
steps:
151151
# must read HEAD before checkout
152152
- name: 'Download all build artifacts'
153-
uses: actions/download-artifact@v2
153+
uses: actions/download-artifact@v4
154154

155155
- name: 'Read HEAD ref'
156156
id: head
@@ -172,24 +172,24 @@ jobs:
172172
echo "::set-output name=PLAIN_VERSION::$PLAIN_VERSION"
173173
echo "::set-output name=NEXT_VERSION::$NEXT_VERSION"
174174
- name: 'Check out repository'
175-
uses: actions/checkout@v3
175+
uses: actions/checkout@v4
176176
with:
177177
ref: ${{ steps.head.outputs.content }}
178178
fetch-depth: 0
179179

180180
# checkout will clobber downloaded artifacts
181181
# we have to download them again
182182
- name: 'Download all build artifacts'
183-
uses: actions/download-artifact@v2
183+
uses: actions/download-artifact@v4
184184

185185
- name: 'Set up Java'
186-
uses: actions/setup-java@v3
186+
uses: actions/setup-java@v4
187187
with:
188-
distribution: zulu
189-
java-version: 21
188+
distribution: 'zulu'
189+
java-version: '21'
190190

191191
- name: 'Cache Maven packages'
192-
uses: actions/cache@v3
192+
uses: actions/cache@v4
193193
with:
194194
path: ~/.m2
195195
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>iot.technology</groupId>
2424
<artifactId>iot-toolkit</artifactId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
<modules>
2727
<module>toolkit-mqtt</module>
2828
<module>toolkit-coap</module>

toolkit-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828

toolkit-coap/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828

toolkit-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828
<name>IoT Technology ToolKit Common</name>

toolkit-mqtt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727

2828
<artifactId>toolkit-mqtt</artifactId>

toolkit-nbiot/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>iot-toolkit</artifactId>
2424
<groupId>iot.technology</groupId>
25-
<version>0.7.3</version>
25+
<version>0.7.2</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

0 commit comments

Comments
 (0)