diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index a81e42bb6..73a41fe88 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -13,16 +13,16 @@ jobs: contents: write discussions: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@v1 + uses: gradle/wrapper-validation-action@v2 - name: Download and install install4j run: wget https://download-gcdn.ej-technologies.com/install4j/install4j_linux-x64_10_0_6.deb && sudo dpkg -i install4j_linux-x64_10_0_6.deb - name: Build with Gradle @@ -43,7 +43,7 @@ jobs: id: show_version run: cat version.properties - name: Delete previous tag and release - uses: ClementTsang/delete-tag-and-release@v0.3.1 + uses: ClementTsang/delete-tag-and-release@v0.4.0 with: delete_release: true tag_name: ${{ steps.read_version_properties.outputs.tag }}