Skip to content

Commit

Permalink
Merge pull request #24 from sanshengshui/develop-0.7.3
Browse files Browse the repository at this point in the history
update actions release.yaml
  • Loading branch information
sanshengshui authored Jan 12, 2025
2 parents 302b36b + 8d64cc3 commit 178c362
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: 'Set up Java'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
distribution: 'zulu'
java-version: '21'

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

steps:
- name: 'Download all build artifacts'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4

- name: 'Read HEAD ref'
id: head
Expand All @@ -98,7 +98,7 @@ jobs:
path: artifacts/HEAD

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

Expand All @@ -123,7 +123,7 @@ jobs:


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

- name: 'Read HEAD ref'
id: head
Expand All @@ -172,24 +172,24 @@ jobs:
echo "::set-output name=PLAIN_VERSION::$PLAIN_VERSION"
echo "::set-output name=NEXT_VERSION::$NEXT_VERSION"
- name: 'Check out repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ steps.head.outputs.content }}
fetch-depth: 0

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

- name: 'Set up Java'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
distribution: 'zulu'
java-version: '21'

- name: 'Cache Maven packages'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>iot.technology</groupId>
<artifactId>iot-toolkit</artifactId>
<version>0.7.3</version>
<version>0.7.2</version>
<modules>
<module>toolkit-mqtt</module>
<module>toolkit-coap</module>
Expand Down
2 changes: 1 addition & 1 deletion toolkit-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>iot-toolkit</artifactId>
<groupId>iot.technology</groupId>
<version>0.7.3</version>
<version>0.7.2</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion toolkit-coap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>iot-toolkit</artifactId>
<groupId>iot.technology</groupId>
<version>0.7.3</version>
<version>0.7.2</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion toolkit-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>iot-toolkit</artifactId>
<groupId>iot.technology</groupId>
<version>0.7.3</version>
<version>0.7.2</version>
</parent>

<name>IoT Technology ToolKit Common</name>
Expand Down
2 changes: 1 addition & 1 deletion toolkit-mqtt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>iot-toolkit</artifactId>
<groupId>iot.technology</groupId>
<version>0.7.3</version>
<version>0.7.2</version>
</parent>

<artifactId>toolkit-mqtt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion toolkit-nbiot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>iot-toolkit</artifactId>
<groupId>iot.technology</groupId>
<version>0.7.3</version>
<version>0.7.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 178c362

Please sign in to comment.