Skip to content

Commit

Permalink
Combined dependency updates (2023-09-09) (#39)
Browse files Browse the repository at this point in the history
Includes these updates:
- [Bump actions/checkout from 3 to 4](#36)
- [Bump crazy-max/ghaction-import-gpg from 5.3.0 to 5.4.0](#35)
- [Bump mikepenz/action-junit-report from 3.8.0 to 4.0.0](#37)
- [Bump org.slf4j:slf4j-api from 2.0.7 to 2.0.9](#38)
  • Loading branch information
giis-qabot authored Sep 9, 2023
1 parent 3922182 commit a0138eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <email>
- 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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
Expand Down

0 comments on commit a0138eb

Please sign in to comment.