Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies (major) (#200)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 16, 2024
1 parent a891454 commit cd058e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
uses: actions/checkout@v4

- name: Initialize
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: java

- name: Set up JDK 17 and Caching maven dependencies
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
Expand All @@ -45,7 +45,7 @@ jobs:
run: ./mvnw clean package

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

sonarcloud:
name: Static Analysis
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
scanners: "vuln,secret,config"

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
folder: '["general"]'

- name: Conventional Changelog Update
uses: TriPSs/conventional-changelog-action@v4
uses: TriPSs/conventional-changelog-action@v5
id: changelog
continue-on-error: true
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v4

- name: Pull request size and stability labels
uses: actions/labeler@v4
uses: actions/labeler@v5
continue-on-error: true
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Conventional Changelog Update
continue-on-error: true
uses: TriPSs/conventional-changelog-action@v4
uses: TriPSs/conventional-changelog-action@v5
id: changelog
with:
github-token: ${{ github.token }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK 17 and Caching maven dependencies
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
sonar_token: ${{ secrets.SONAR_TOKEN }}
- name: Archive CycloneDX
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cyclone
path: target/bom.json
Expand Down Expand Up @@ -91,6 +91,6 @@ jobs:
scanners: "vuln,secret,config"

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: "trivy-results.sarif"

0 comments on commit cd058e2

Please sign in to comment.