Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the dependencies group with 3 updates #712

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/_test-core-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
run: npx kill-port --port 4724

- name: Upload target folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: target-${{ inputs.suite-name }}
Expand All @@ -172,7 +172,7 @@ jobs:
${{ github.workspace }}/core-java/videos

- name: Upload reports folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reports-${{ inputs.suite-name }}
retention-days: 1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ jobs:
cache: 'maven'

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Auto build typescript
if: ${{ matrix.language == 'typescript' }}
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

- name: Build Java Project
if: ${{ matrix.language == 'java' }}
run: mvn install -f core-java/pom.xml -DskipTests

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
pnpm --silent changelog --from v${{ steps.old_version.outputs.previous_version }} --next-version v${{ steps.version.outputs.version }} > CHANGELOG.md

- name: Upload updated version related files to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version-files-${{ github.run_id }}
retention-days: 1
Expand Down Expand Up @@ -165,15 +165,15 @@ jobs:
run: mvn clean install -f core-java/pom.xml -DskipTests -Dcheckstyle.skip

- name: Upload target folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: target-${{ github.run_id }}
retention-days: 1
path: |
${{ github.workspace }}/core-java/target

- name: Upload version files folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: version-pom-files-${{ github.run_id }}
retention-days: 1
Expand All @@ -192,12 +192,12 @@ jobs:
token: ${{ env.PUSH_TOKEN }}

- name: Download Version files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: version-files-${{ github.run_id }}

- name: Download Version pom files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: version-pom-files-${{ github.run_id }}
path: ${{ github.workspace }}/core-java
Expand Down Expand Up @@ -253,13 +253,13 @@ jobs:
fetch-depth: 0

- name: Download target folder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: target-${{ github.run_id }}
path: ${{ github.workspace }}/core-java/target

- name: Download Version files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: version-files-${{ github.run_id }}

Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/test-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,61 +200,61 @@ jobs:
check-latest: true

- name: Download reports-testng-api files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-api
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-mobile-bs files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-mobile-bs
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-mobile-local files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-mobile-local
path: ${{ github.workspace }}/core-java/reports

# - name: Download reports-testng-mobile-web files
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: reports-testng-mobile-web
# path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-mobile-lt files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-mobile-lt
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-others files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-others
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-web-bs files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-web-bs
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-web-grid files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-web-grid
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-web-local files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-web-local
path: ${{ github.workspace }}/core-java/reports

- name: Download reports-testng-web-lt files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-testng-web-lt
path: ${{ github.workspace }}/core-java/reports
Expand All @@ -264,7 +264,7 @@ jobs:
mvn verify org.jacoco:jacoco-maven-plugin:prepare-agent -f core-java/pom.xml -Pcoverage-report

- name: Upload target folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: target-${{ github.run_id }}
Expand All @@ -276,7 +276,7 @@ jobs:
${{ github.workspace }}/core-java/screenshots

- name: Upload reports folder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reports-${{ github.run_id }}
retention-days: 1
Expand All @@ -302,13 +302,13 @@ jobs:
check-latest: true

- name: Download target folder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: target-${{ github.run_id }}
path: ${{ github.workspace }}/core-java

- name: Download reports folder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports-${{ github.run_id }}
path: ${{ github.workspace }}/core-java
Expand Down