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.0](#122)
- [Bump actions/download-artifact from 3 to 4](#120)
- [Bump actions/upload-artifact from 3 to 4](#119)
- [Bump actions/upload-pages-artifact from 2.0.0 to 3.0.0](#123)
- [Bump javiertuya/sonarqube-action from 1.1.2 to 1.2.0](#121)
- [Bump surefire.version from 3.2.2 to 3.2.3](#118)
  • Loading branch information
giis-qabot authored Dec 24, 2023
1 parent 240e190 commit a0667b3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Publish test report files
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "test-report-files-${{ matrix.scope }}"
path: |
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:

- name: Publish test report files
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "test-report-files-IT"
path: |
Expand Down Expand Up @@ -277,7 +277,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 @@ -335,30 +335,30 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
# Downloads java test report files
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-UT"
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-Postgres"
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-Sqlserver"
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-Oracle"
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-IT"

# 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
- uses: actions/download-artifact@v4
if: always()
with:
name: "test-report-files-Net"
Expand All @@ -383,7 +383,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 @@ -398,17 +398,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.0

sonarqube:
needs: [test-java]
Expand All @@ -418,7 +418,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
2 changes: 1 addition & 1 deletion 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 Down

0 comments on commit a0667b3

Please sign in to comment.