From 78c76e8616b090ee77292da9dffd8f70ab525b94 Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 17 Mar 2024 22:27:20 +0100 Subject: [PATCH 1/2] Updating GitHub Actions versions - symfonycorp/security-checker-action@v5 - github/codeql-action/upload-sarif@v3 - webfactory/ssh-agent@v0.9.0 - actions/checkout@v4 - actions/setup-node@v4 - actions/cache@v4 --- resources/views/action_yaml.blade.php | 10 +++++----- resources/views/yaml/code_quality.blade.php | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/views/action_yaml.blade.php b/resources/views/action_yaml.blade.php index fa1d5b5..154e63f 100644 --- a/resources/views/action_yaml.blade.php +++ b/resources/views/action_yaml.blade.php @@ -29,15 +29,15 @@ name: P$@{{ matrix.php-versions }} - L$@{{ matrix.laravel }} - $@{{ matrix.dependency-stability }} - $@{{ matrix.operating-system}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 @if ($stepNodejs) - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '{{ $stepNodejsVersion }}' @if ($stepCacheNpmModules) - name: Cache node_modules directory - uses: actions/cache@v3 + uses: actions/cache@v4 id: node_modules-cache with: path: node_modules @@ -61,7 +61,7 @@ id: composer-cache run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: actions-cache with: path: $@{{ steps.composer-cache.outputs.dir }} @@ -71,7 +71,7 @@ @endif @if ($stepCacheVendors) - name: Cache PHP dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 id: vendor-cache with: path: vendor diff --git a/resources/views/yaml/code_quality.blade.php b/resources/views/yaml/code_quality.blade.php index 2ae556d..1e9a27d 100644 --- a/resources/views/yaml/code_quality.blade.php +++ b/resources/views/yaml/code_quality.blade.php @@ -14,7 +14,7 @@ @endif @if ($stepSecurityCheck) - - uses: symfonycorp/security-checker-action@v4 + - uses: symfonycorp/security-checker-action@v5 @endif @if ($stepExecuteCodeSniffer) @@ -52,7 +52,7 @@ @else vendor/bin/psalm --report=result.sarif - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v2 + uses: github/codeql-action/upload-sarif@v3 with: # Path to SARIF file relative to the root of the repository sarif_file: result.sarif From f23f3eccf666684db538a611ff13d42eb2ed82cb Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Sun, 17 Mar 2024 22:28:51 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe5eab6..9dd1cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ - Adding select for PHP 8.3 in the workflow files - Adding select for Laravel 11 in the workflow files - Adding select for Node 20 in the workflow files - +- Updating GitHub Actions versions: + - symfonycorp/security-checker-action@v5 + - github/codeql-action/upload-sarif@v3 + - webfactory/ssh-agent@v0.9.0 + - actions/checkout@v4 + - actions/setup-node@v4 + - actions/cache@v4 ## 1.0.0 - 2024-03-17 - Upgrading to Laravel v11