generated from giis-uniovi/samples-giis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Combined dependency updates (2023-12-24) (#124)
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
1 parent
32082ef
commit acfb65c
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
@@ -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: | | ||
|
@@ -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" | ||
|
@@ -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: | | ||
|
@@ -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] | ||
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters