Skip to content

Commit 99a4cfd

Browse files
Bump the actions-deps group across 1 directory with 3 updates
Bumps the actions-deps group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) and [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `codacy/codacy-analysis-cli-action` from 4.4.5 to 4.4.7 - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](codacy/codacy-analysis-cli-action@v4.4.5...v4.4.7) Updates `SonarSource/sonarqube-scan-action` from 5.1.0 to 5.3.0 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v5.1.0...v5.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: codacy/codacy-analysis-cli-action dependency-version: 4.4.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 5.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dba5a1c commit 99a4cfd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/codacy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
steps:
3838
# Checkout the repository to the GitHub Actions runner
3939
- name: Checkout code
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141

4242
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
4343
- name: Run Codacy Analysis CLI
44-
uses: codacy/codacy-analysis-cli-action@v4.4.5
44+
uses: codacy/codacy-analysis-cli-action@v4.4.7
4545
with:
4646
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
4747
# You can also omit the token and run the tools that support default configurations
@@ -79,7 +79,7 @@ jobs:
7979
run: php -v
8080

8181
- name: Checkout code
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v5
8383

8484
- name: Use Node.js ${{ env.NODE_VERSION }}
8585
uses: actions/setup-node@v4.1.0

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: "Checkout Repository"
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- name: "Dependency Review"
2424
uses: actions/dependency-review-action@v4
2525
with:

.github/workflows/devskim.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
security-events: write
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: Run DevSkim scanner
3131
uses: microsoft/DevSkim-Action@v1

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: php -v
4444

4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
with:
4848
# Disabling shallow clones is recommended for improving the relevancy of reporting
4949
fetch-depth: 0
@@ -72,7 +72,7 @@ jobs:
7272
run: npm run coverage
7373

7474
- name: SonarQube Scan
75-
uses: SonarSource/sonarqube-scan-action@v5.1.0
75+
uses: SonarSource/sonarqube-scan-action@v5.3.0
7676
with:
7777
args: >
7878
-Dsonar.verbose=true

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
git config --global core.autocrlf false
5757
git config --global core.eol lf
5858
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060

6161
- name: Validate composer.json and composer.lock
6262
run: composer validate --strict

0 commit comments

Comments
 (0)