Skip to content

Commit

Permalink
Combined dependency updates (2023-12-24) (#124)
Browse files Browse the repository at this point in the history
Includes these updates:
- [Bump actions/deploy-pages from 3.0.1 to 4.0.1](#121)
- [Bump actions/download-artifact from 3.0.2 to 4.1.0](#122)
- [Bump actions/upload-artifact from 3 to 4](#116)
- [Bump actions/upload-pages-artifact from 2.0.0 to 3.0.0](#120)
- [Bump javiertuya/sonarqube-action from 1.1.2 to 1.2.0](#119)
- [Bump org.openapitools:openapi-generator-maven-plugin from 7.1.0 to 7.2.0](#123)
- [Bump surefire.version from 3.2.2 to 3.2.3](#118)
  • Loading branch information
giis-qabot authored Dec 24, 2023
1 parent 32082ef commit acfb65c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Publish test report files
if: always()
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4
with:
name: "test-report-files-${{ matrix.scope }}"
path: |
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

- name: Publish test report files
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "test-report-files-Net"
path: |
Expand Down Expand Up @@ -229,26 +229,26 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
# Downloads java test report files
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Core"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Postgres"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Sqlserver"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Oracle"

# Net reports were zipped under a different root, specifies the path.
# Modifies the namespaces to allow differentiate from the java test results
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Net"
Expand All @@ -273,7 +273,7 @@ jobs:
echo "</body></html>" >> target-ALL/site/index.html
- if: always()
name: Publish test report files
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4
with:
name: "test-report-ALL"
path: |
Expand All @@ -288,17 +288,17 @@ jobs:
# Some files (e.g. junit reports) have 600 permissions.
# As of [email protected], permissions must be set explicitly
# to 0755 (as indicated in warnings produced by v1.0.8)
- name: Fix permissions to actions/upload-pages-artifact@v2.0.0
- name: Fix permissions to actions/upload-pages-artifact@v3.0.0
run: sudo chmod -c -R 0755 target-ALL/site
- name: Upload artifact
if: always()
uses: actions/upload-pages-artifact@v2.0.0
uses: actions/upload-pages-artifact@v3.0.0
with:
path: 'target-ALL/site'
- name: Deploy to GitHub Pages
if: always()
id: deployment
uses: actions/deploy-pages@v3.0.1
uses: actions/deploy-pages@v4.0.1

sonarqube:
needs: [test-java]
Expand All @@ -308,7 +308,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
4 changes: 2 additions & 2 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>

<portable.version>2.2.1</portable.version>

Expand All @@ -29,7 +29,7 @@

<mockserver.version>5.15.0</mockserver.version>

<openapi.generator.version>7.1.0</openapi.generator.version>
<openapi.generator.version>7.2.0</openapi.generator.version>
</properties>

<modules>
Expand Down

0 comments on commit acfb65c

Please sign in to comment.