Skip to content

Commit

Permalink
fix(INF-57): update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
welschsn committed Jun 26, 2024
1 parent f5d0eb2 commit 273f435
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Bump version and create tag
id: semanticversion
uses: mathieudutour/github-tag-action@v6.1
uses: mathieudutour/github-tag-action@v6.2
with:
release_branches: main
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -41,7 +41,7 @@ jobs:
fi
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: Release ${{ steps.semanticversion.outputs.new_version }}
tag_name: ${{ steps.semanticversion.outputs.new_tag }}
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Env
run: |
echo "SONAR_ANALYSIS_ENABLED=${{ secrets.SONAR_ANALYSIS_ENABLED }}" >> $GITHUB_ENV
## Configure JDK
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<!-- dependencies -->
<aws-java-sdk-s3.version>1.12.649</aws-java-sdk-s3.version>
<aws-java-sdk-s3.version>1.12.750</aws-java-sdk-s3.version>
<slf4j.version>1.7.36</slf4j.version>
<jaxb.version>2.3.1</jaxb.version>
<junit.version>5.9.3</junit.version>
<junit.version>5.10.2</junit.version>
<snakeyml.version>2.2</snakeyml.version>
<!-- plugins -->
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
<maven-assembly-plugin.version>3.6.0</maven-assembly-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
<!-- sonarcloud -->
<sonar.organization>levigo</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
Expand Down

0 comments on commit 273f435

Please sign in to comment.