diff --git a/.github/workflows/ci-build-next-java.yml b/.github/workflows/ci-build-next-java.yml index f654ecf..b29f271 100644 --- a/.github/workflows/ci-build-next-java.yml +++ b/.github/workflows/ci-build-next-java.yml @@ -8,6 +8,8 @@ on: jobs: java-17-compatibility: runs-on: ubuntu-latest + permissions: + contents: read concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -31,9 +33,3 @@ jobs: - name: Run tests and build with Maven run: | mvn --batch-mode --update-snapshots clean package -DtrimStackTrace=false -Djava.version=17 - - name: Publish Test Report - uses: scacap/action-surefire-report@v1 - if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }} - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - fail_if_no_tests: false diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index b1a2a20..3b80200 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -130,7 +130,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - name: Upload executable - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: extension-manager binary path: extension-manager diff --git a/.github/workflows/release_droid_prepare_original_checksum.yml b/.github/workflows/release_droid_prepare_original_checksum.yml index 22bc795..254c434 100644 --- a/.github/workflows/release_droid_prepare_original_checksum.yml +++ b/.github/workflows/release_droid_prepare_original_checksum.yml @@ -35,7 +35,7 @@ jobs: - name: Prepare checksum run: find ./*/target -maxdepth 1 -name "*.jar" -exec sha256sum "{}" + > original_checksum - name: Upload checksum to the artifactory - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: original_checksum retention-days: 5 diff --git a/.github/workflows/render-design.yml b/.github/workflows/render-design.yml index cfd93ec..f37a24b 100644 --- a/.github/workflows/render-design.yml +++ b/.github/workflows/render-design.yml @@ -25,7 +25,7 @@ jobs: pandoc ../doc/design.md -o design.html --filter pandoc-plantuml pandoc ../doc/system_requirements.md -o system_requirements.html --filter pandoc-plantuml - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4.3.0 + uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages folder: gh-pages