Skip to content

Commit 7d12aef

Browse files
Bump the github_actions_dependencies group across 1 directory with 4 updates
Bumps the github_actions_dependencies group with 4 updates in the / directory: [shivammathur/setup-php](https://github.com/shivammathur/setup-php), [actions/cache](https://github.com/actions/cache), [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) and [aquasecurity/trivy-action](https://github.com/aquasecurity/trivy-action). Updates `shivammathur/setup-php` from 2.32.0 to 2.33.0 - [Release notes](https://github.com/shivammathur/setup-php/releases) - [Commits](shivammathur/setup-php@2.32.0...2.33.0) Updates `actions/cache` from 4.2.1 to 4.2.3 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.1...v4.2.3) Updates `SonarSource/sonarqube-scan-action` from 5.0.0 to 5.1.0 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v5.0.0...v5.1.0) Updates `aquasecurity/trivy-action` from 0.29.0 to 0.30.0 - [Release notes](https://github.com/aquasecurity/trivy-action/releases) - [Commits](aquasecurity/trivy-action@0.29.0...0.30.0) --- updated-dependencies: - dependency-name: shivammathur/setup-php dependency-version: 2.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions_dependencies - dependency-name: actions/cache dependency-version: 4.2.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github_actions_dependencies - dependency-name: SonarSource/sonarqube-scan-action dependency-version: 5.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions_dependencies - dependency-name: aquasecurity/trivy-action dependency-version: 0.30.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_actions_dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d2c51d4 commit 7d12aef

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/main.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: '0'
3131

3232
- name: Setup PHP, with composer and extensions
33-
uses: shivammathur/setup-php@2.32.0
33+
uses: shivammathur/setup-php@2.33.0
3434
with:
3535
php-version: '8.4'
3636
tools: composer:v2
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4141

4242
- name: Cache composer dependencies
43-
uses: actions/[email protected].1
43+
uses: actions/[email protected].3
4444
with:
4545
path: ${{ steps.composer-cache.outputs.CACHE_DIR }}
4646
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -75,7 +75,7 @@ jobs:
7575
fetch-depth: '0'
7676

7777
- name: Setup PHP, with composer and extensions
78-
uses: shivammathur/setup-php@2.32.0
78+
uses: shivammathur/setup-php@2.33.0
7979
with:
8080
php-version: '8.4'
8181
tools: composer:v2
@@ -85,7 +85,7 @@ jobs:
8585
run: echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
8686

8787
- name: Cache composer dependencies
88-
uses: actions/[email protected].1
88+
uses: actions/[email protected].3
8989
with:
9090
path: ${{ steps.composer-cache.outputs.CACHE_DIR }}
9191
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -126,7 +126,7 @@ jobs:
126126
fetch-depth: '0'
127127

128128
- name: Setup PHP, with composer and extensions
129-
uses: shivammathur/setup-php@2.32.0
129+
uses: shivammathur/setup-php@2.33.0
130130
with:
131131
php-version: '8.4'
132132
tools: composer:v2
@@ -136,7 +136,7 @@ jobs:
136136
run: echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
137137

138138
- name: Cache composer dependencies
139-
uses: actions/[email protected].1
139+
uses: actions/[email protected].3
140140
with:
141141
path: ${{ steps.composer-cache.outputs.CACHE_DIR }}
142142
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -217,7 +217,7 @@ jobs:
217217
fetch-depth: '0'
218218

219219
- name: Setup PHP, with composer and extensions
220-
uses: shivammathur/setup-php@2.32.0
220+
uses: shivammathur/setup-php@2.33.0
221221
with:
222222
php-version: '8.4'
223223
extensions: pdo_mysql, mysql
@@ -229,7 +229,7 @@ jobs:
229229
run: echo "CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
230230

231231
- name: Cache composer dependencies
232-
uses: actions/[email protected].1
232+
uses: actions/[email protected].3
233233
with:
234234
path: ${{ steps.composer-cache.outputs.CACHE_DIR }}
235235
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -284,7 +284,7 @@ jobs:
284284
COVERALLS_RUN_LOCALLY: 1
285285

286286
- name: SonarQube Scan (https://sonarcloud.io/dashboard?id=github.com.tarlepp.symfony-flex-backend)
287-
uses: SonarSource/sonarqube-scan-action@v5.0.0
287+
uses: SonarSource/sonarqube-scan-action@v5.1.0
288288
env:
289289
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
290290
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # https://github.com/SonarSource/sonarqube-scan-action?tab=readme-ov-file#environment-variables
@@ -365,7 +365,7 @@ jobs:
365365
run: docker build . --file Dockerfile --tag symfony-flex-backend:${{ steps.vars.outputs.DOCKER_TAG }}
366366

367367
- name: Scan Docker image with Trivy vulnerability scanner
368-
uses: aquasecurity/trivy-action@0.29.0
368+
uses: aquasecurity/trivy-action@0.30.0
369369
with:
370370
image-ref: 'symfony-flex-backend:${{ steps.vars.outputs.DOCKER_TAG }}'
371371
format: 'table'

0 commit comments

Comments
 (0)