diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d278748..7939470 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,13 +9,13 @@ jobs: steps: - name: Checkout GitHub repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 #Official documentation seems incomplete. To avoid failure when importing key: #https://stackoverflow.com/questions/61096521/how-to-use-gpg-key-in-github-actions #It requires export the private key with the armor option: gpg --output private.pgm --armor --export-secret-key - name: Import GPG Key - uses: crazy-max/ghaction-import-gpg@v5.3.0 + uses: crazy-max/ghaction-import-gpg@v5.4.0 with: gpg_private_key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b50e97b..0bb455c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: #avoids duplicate execution of pr from local repo, but allows pr from forked repos and dependabot if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && (github.event.pull_request.head.repo.fork || startsWith(github.head_ref, 'dependabot/'))) steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: 'temurin' @@ -34,7 +34,7 @@ jobs: - name: Generate report checks if: always() - uses: mikepenz/action-junit-report@v3.8.0 + uses: mikepenz/action-junit-report@v4.0.0 with: check_name: "test-result" report_paths: "**/surefire-reports/TEST-*.xml" diff --git a/pom.xml b/pom.xml index 0fd1746..26c3a75 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ org.slf4j slf4j-api - 2.0.7 + 2.0.9 ch.qos.logback