Skip to content

Commit

Permalink
Combined dependency updates (2024-01-03) (#67)
Browse files Browse the repository at this point in the history
Includes these updates:
- [Bump actions/upload-artifact from 3 to 4](#66)
- [Bump crazy-max/ghaction-import-gpg from 6.0.0 to 6.1.0](#64)
- [Bump javiertuya/sonarqube-action from 1.1.2 to 1.2.0](#65)
- [Bump org.apache.logging.log4j:log4j-slf4j2-impl from 2.22.0 to 2.22.1](#63)
- [Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.2 to 3.6.3](#61)
- [Bump org.slf4j:slf4j-api from 2.0.9 to 2.0.10](#62)
- [Bump surefire.version from 3.2.2 to 3.2.3](#60)
  • Loading branch information
giis-qabot authored Jan 3, 2024
1 parent 577160b commit 381bf9d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
#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@v6.0.0
uses: crazy-max/ghaction-import-gpg@v6.1.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 @@ -42,7 +42,7 @@ jobs:

- if: always()
name: Publish test report files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "test-report-files"
path: |
Expand All @@ -58,7 +58,7 @@ jobs:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: javiertuya/sonarqube-action@v1.1.2
- uses: javiertuya/sonarqube-action@v1.2.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<surefire.version>3.2.2</surefire.version>
<surefire.version>3.2.3</surefire.version>
</properties>

<modules>
Expand All @@ -38,12 +38,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
<version>2.0.10</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.22.0</version>
<version>2.22.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -163,7 +163,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.2</version>
<version>3.6.3</version>
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
Expand Down

0 comments on commit 381bf9d

Please sign in to comment.