diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0b00b12f5..c25ebb6c0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -16,7 +16,7 @@ jobs: tools: composer-normalize - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Normalize run: | @@ -50,21 +50,21 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get composer cache directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} restore-keys: composer- - name: Cache PhpCsFixer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .cache/php-cs-fixer/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c92fca79c..8a164b272 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: tools: flex - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize -j 4 @@ -39,7 +39,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 if: steps.composer-cache.outputs.dir with: path: ${{ steps.composer-cache.outputs.dir }} @@ -142,7 +142,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -154,7 +154,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index eb91ab1de..ac163078f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -19,21 +19,21 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get composer cache directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} restore-keys: composer- - name: Cache PHPStan - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache/phpstan/ key: phpstan-${{ github.sha }} @@ -53,21 +53,21 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get composer cache directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} restore-keys: composer- - name: Cache PhpCsFixer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache/php-cs-fixer/ key: php-cs-fixer-${{ github.sha }} @@ -90,14 +90,14 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get composer cache directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} diff --git a/.github/workflows/watch.yml b/.github/workflows/watch.yml index c44fe6507..c44530083 100644 --- a/.github/workflows/watch.yml +++ b/.github/workflows/watch.yml @@ -19,7 +19,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: master @@ -28,7 +28,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: composer-${{ github.sha }} @@ -39,7 +39,7 @@ jobs: composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-stable - name: Cache PhpCsFixer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .cache/php-cs-fixer/ diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 10dfb3041..da4d0289c 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -23,7 +23,7 @@ jobs: php-version: 8.1 - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: 'source' diff --git a/src/CodeGenerator/.github/workflows/checks.yml b/src/CodeGenerator/.github/workflows/checks.yml index d5e4aece2..82cc57562 100644 --- a/src/CodeGenerator/.github/workflows/checks.yml +++ b/src/CodeGenerator/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/CodeGenerator/.github/workflows/ci.yml b/src/CodeGenerator/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/CodeGenerator/.github/workflows/ci.yml +++ b/src/CodeGenerator/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Core/.github/workflows/checks.yml b/src/Core/.github/workflows/checks.yml index e32474171..27cc2b3da 100644 --- a/src/Core/.github/workflows/checks.yml +++ b/src/Core/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Core/.github/workflows/ci.yml b/src/Core/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Core/.github/workflows/ci.yml +++ b/src/Core/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Integration/Aws/DynamoDbSession/.github/workflows/checks.yml b/src/Integration/Aws/DynamoDbSession/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Aws/DynamoDbSession/.github/workflows/checks.yml +++ b/src/Integration/Aws/DynamoDbSession/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Aws/DynamoDbSession/.github/workflows/ci.yml b/src/Integration/Aws/DynamoDbSession/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/Integration/Aws/DynamoDbSession/.github/workflows/ci.yml +++ b/src/Integration/Aws/DynamoDbSession/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Integration/Aws/SimpleS3/.github/workflows/checks.yml b/src/Integration/Aws/SimpleS3/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Aws/SimpleS3/.github/workflows/checks.yml +++ b/src/Integration/Aws/SimpleS3/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Aws/SimpleS3/.github/workflows/ci.yml b/src/Integration/Aws/SimpleS3/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/Integration/Aws/SimpleS3/.github/workflows/ci.yml +++ b/src/Integration/Aws/SimpleS3/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Integration/Laravel/Cache/.github/workflows/checks.yml b/src/Integration/Laravel/Cache/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Laravel/Cache/.github/workflows/checks.yml +++ b/src/Integration/Laravel/Cache/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Laravel/Cache/.github/workflows/ci.yml b/src/Integration/Laravel/Cache/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/Integration/Laravel/Cache/.github/workflows/ci.yml +++ b/src/Integration/Laravel/Cache/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Integration/Laravel/Queue/.github/workflows/checks.yml b/src/Integration/Laravel/Queue/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Laravel/Queue/.github/workflows/checks.yml +++ b/src/Integration/Laravel/Queue/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Laravel/Queue/.github/workflows/ci.yml b/src/Integration/Laravel/Queue/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/Integration/Laravel/Queue/.github/workflows/ci.yml +++ b/src/Integration/Laravel/Queue/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Integration/Monolog/CloudWatch/.github/workflows/checks.yml b/src/Integration/Monolog/CloudWatch/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Monolog/CloudWatch/.github/workflows/checks.yml +++ b/src/Integration/Monolog/CloudWatch/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Monolog/CloudWatch/.github/workflows/ci.yml b/src/Integration/Monolog/CloudWatch/.github/workflows/ci.yml index 433c0fe2c..397c8f4c5 100644 --- a/src/Integration/Monolog/CloudWatch/.github/workflows/ci.yml +++ b/src/Integration/Monolog/CloudWatch/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Integration/Symfony/Bundle/.github/workflows/checks.yml b/src/Integration/Symfony/Bundle/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Integration/Symfony/Bundle/.github/workflows/checks.yml +++ b/src/Integration/Symfony/Bundle/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Integration/Symfony/Bundle/.github/workflows/ci.yml b/src/Integration/Symfony/Bundle/.github/workflows/ci.yml index 41f4cf960..005942b1d 100644 --- a/src/Integration/Symfony/Bundle/.github/workflows/ci.yml +++ b/src/Integration/Symfony/Bundle/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download dependencies run: | diff --git a/src/Service/.template/.github/workflows/checks.yml b/src/Service/.template/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/.template/.github/workflows/checks.yml +++ b/src/Service/.template/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/.template/.github/workflows/ci.yml b/src/Service/.template/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/.template/.github/workflows/ci.yml +++ b/src/Service/.template/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/AppSync/.github/workflows/checks.yml b/src/Service/AppSync/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/AppSync/.github/workflows/checks.yml +++ b/src/Service/AppSync/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/AppSync/.github/workflows/ci.yml b/src/Service/AppSync/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/AppSync/.github/workflows/ci.yml +++ b/src/Service/AppSync/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Athena/.github/workflows/checks.yml b/src/Service/Athena/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Athena/.github/workflows/checks.yml +++ b/src/Service/Athena/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Athena/.github/workflows/ci.yml b/src/Service/Athena/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Athena/.github/workflows/ci.yml +++ b/src/Service/Athena/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CloudFormation/.github/workflows/checks.yml b/src/Service/CloudFormation/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CloudFormation/.github/workflows/checks.yml +++ b/src/Service/CloudFormation/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CloudFormation/.github/workflows/ci.yml b/src/Service/CloudFormation/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CloudFormation/.github/workflows/ci.yml +++ b/src/Service/CloudFormation/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CloudFront/.github/workflows/checks.yml b/src/Service/CloudFront/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CloudFront/.github/workflows/checks.yml +++ b/src/Service/CloudFront/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CloudFront/.github/workflows/ci.yml b/src/Service/CloudFront/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CloudFront/.github/workflows/ci.yml +++ b/src/Service/CloudFront/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CloudWatch/.github/workflows/checks.yml b/src/Service/CloudWatch/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CloudWatch/.github/workflows/checks.yml +++ b/src/Service/CloudWatch/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CloudWatch/.github/workflows/ci.yml b/src/Service/CloudWatch/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CloudWatch/.github/workflows/ci.yml +++ b/src/Service/CloudWatch/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CloudWatchLogs/.github/workflows/checks.yml b/src/Service/CloudWatchLogs/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CloudWatchLogs/.github/workflows/checks.yml +++ b/src/Service/CloudWatchLogs/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CloudWatchLogs/.github/workflows/ci.yml b/src/Service/CloudWatchLogs/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CloudWatchLogs/.github/workflows/ci.yml +++ b/src/Service/CloudWatchLogs/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CodeBuild/.github/workflows/checks.yml b/src/Service/CodeBuild/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CodeBuild/.github/workflows/checks.yml +++ b/src/Service/CodeBuild/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CodeBuild/.github/workflows/ci.yml b/src/Service/CodeBuild/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CodeBuild/.github/workflows/ci.yml +++ b/src/Service/CodeBuild/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CodeCommit/.github/workflows/checks.yml b/src/Service/CodeCommit/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CodeCommit/.github/workflows/checks.yml +++ b/src/Service/CodeCommit/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CodeCommit/.github/workflows/ci.yml b/src/Service/CodeCommit/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CodeCommit/.github/workflows/ci.yml +++ b/src/Service/CodeCommit/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CodeDeploy/.github/workflows/checks.yml b/src/Service/CodeDeploy/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CodeDeploy/.github/workflows/checks.yml +++ b/src/Service/CodeDeploy/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CodeDeploy/.github/workflows/ci.yml b/src/Service/CodeDeploy/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CodeDeploy/.github/workflows/ci.yml +++ b/src/Service/CodeDeploy/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/CognitoIdentityProvider/.github/workflows/checks.yml b/src/Service/CognitoIdentityProvider/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/CognitoIdentityProvider/.github/workflows/checks.yml +++ b/src/Service/CognitoIdentityProvider/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/CognitoIdentityProvider/.github/workflows/ci.yml b/src/Service/CognitoIdentityProvider/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/CognitoIdentityProvider/.github/workflows/ci.yml +++ b/src/Service/CognitoIdentityProvider/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Comprehend/.github/workflows/checks.yml b/src/Service/Comprehend/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Comprehend/.github/workflows/checks.yml +++ b/src/Service/Comprehend/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Comprehend/.github/workflows/ci.yml b/src/Service/Comprehend/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Comprehend/.github/workflows/ci.yml +++ b/src/Service/Comprehend/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/DynamoDb/.github/workflows/checks.yml b/src/Service/DynamoDb/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/DynamoDb/.github/workflows/checks.yml +++ b/src/Service/DynamoDb/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/DynamoDb/.github/workflows/ci.yml b/src/Service/DynamoDb/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/DynamoDb/.github/workflows/ci.yml +++ b/src/Service/DynamoDb/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Ecr/.github/workflows/checks.yml b/src/Service/Ecr/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Ecr/.github/workflows/checks.yml +++ b/src/Service/Ecr/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Ecr/.github/workflows/ci.yml b/src/Service/Ecr/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Ecr/.github/workflows/ci.yml +++ b/src/Service/Ecr/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/ElastiCache/.github/workflows/checks.yml b/src/Service/ElastiCache/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/ElastiCache/.github/workflows/checks.yml +++ b/src/Service/ElastiCache/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/ElastiCache/.github/workflows/ci.yml b/src/Service/ElastiCache/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/ElastiCache/.github/workflows/ci.yml +++ b/src/Service/ElastiCache/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/EventBridge/.github/workflows/checks.yml b/src/Service/EventBridge/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/EventBridge/.github/workflows/checks.yml +++ b/src/Service/EventBridge/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/EventBridge/.github/workflows/ci.yml b/src/Service/EventBridge/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/EventBridge/.github/workflows/ci.yml +++ b/src/Service/EventBridge/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Firehose/.github/workflows/checks.yml b/src/Service/Firehose/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Firehose/.github/workflows/checks.yml +++ b/src/Service/Firehose/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Firehose/.github/workflows/ci.yml b/src/Service/Firehose/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Firehose/.github/workflows/ci.yml +++ b/src/Service/Firehose/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Iam/.github/workflows/checks.yml b/src/Service/Iam/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Iam/.github/workflows/checks.yml +++ b/src/Service/Iam/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Iam/.github/workflows/ci.yml b/src/Service/Iam/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Iam/.github/workflows/ci.yml +++ b/src/Service/Iam/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Iot/.github/workflows/checks.yml b/src/Service/Iot/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Iot/.github/workflows/checks.yml +++ b/src/Service/Iot/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Iot/.github/workflows/ci.yml b/src/Service/Iot/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Iot/.github/workflows/ci.yml +++ b/src/Service/Iot/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/IotData/.github/workflows/checks.yml b/src/Service/IotData/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/IotData/.github/workflows/checks.yml +++ b/src/Service/IotData/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/IotData/.github/workflows/ci.yml b/src/Service/IotData/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/IotData/.github/workflows/ci.yml +++ b/src/Service/IotData/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Kinesis/.github/workflows/checks.yml b/src/Service/Kinesis/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Kinesis/.github/workflows/checks.yml +++ b/src/Service/Kinesis/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Kinesis/.github/workflows/ci.yml b/src/Service/Kinesis/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Kinesis/.github/workflows/ci.yml +++ b/src/Service/Kinesis/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Kms/.github/workflows/checks.yml b/src/Service/Kms/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Kms/.github/workflows/checks.yml +++ b/src/Service/Kms/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Kms/.github/workflows/ci.yml b/src/Service/Kms/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Kms/.github/workflows/ci.yml +++ b/src/Service/Kms/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Lambda/.github/workflows/checks.yml b/src/Service/Lambda/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Lambda/.github/workflows/checks.yml +++ b/src/Service/Lambda/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Lambda/.github/workflows/ci.yml b/src/Service/Lambda/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Lambda/.github/workflows/ci.yml +++ b/src/Service/Lambda/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/LocationService/.github/workflows/checks.yml b/src/Service/LocationService/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/LocationService/.github/workflows/checks.yml +++ b/src/Service/LocationService/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/LocationService/.github/workflows/ci.yml b/src/Service/LocationService/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/LocationService/.github/workflows/ci.yml +++ b/src/Service/LocationService/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/MediaConvert/.github/workflows/checks.yml b/src/Service/MediaConvert/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/MediaConvert/.github/workflows/checks.yml +++ b/src/Service/MediaConvert/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/MediaConvert/.github/workflows/ci.yml b/src/Service/MediaConvert/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/MediaConvert/.github/workflows/ci.yml +++ b/src/Service/MediaConvert/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/RdsDataService/.github/workflows/checks.yml b/src/Service/RdsDataService/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/RdsDataService/.github/workflows/checks.yml +++ b/src/Service/RdsDataService/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/RdsDataService/.github/workflows/ci.yml b/src/Service/RdsDataService/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/RdsDataService/.github/workflows/ci.yml +++ b/src/Service/RdsDataService/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Rekognition/.github/workflows/checks.yml b/src/Service/Rekognition/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Rekognition/.github/workflows/checks.yml +++ b/src/Service/Rekognition/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Rekognition/.github/workflows/ci.yml b/src/Service/Rekognition/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Rekognition/.github/workflows/ci.yml +++ b/src/Service/Rekognition/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Route53/.github/workflows/checks.yml b/src/Service/Route53/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Route53/.github/workflows/checks.yml +++ b/src/Service/Route53/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Route53/.github/workflows/ci.yml b/src/Service/Route53/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Route53/.github/workflows/ci.yml +++ b/src/Service/Route53/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/S3/.github/workflows/checks.yml b/src/Service/S3/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/S3/.github/workflows/checks.yml +++ b/src/Service/S3/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/S3/.github/workflows/ci.yml b/src/Service/S3/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/S3/.github/workflows/ci.yml +++ b/src/Service/S3/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Scheduler/.github/workflows/checks.yml b/src/Service/Scheduler/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Scheduler/.github/workflows/checks.yml +++ b/src/Service/Scheduler/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Scheduler/.github/workflows/ci.yml b/src/Service/Scheduler/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Scheduler/.github/workflows/ci.yml +++ b/src/Service/Scheduler/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/SecretsManager/.github/workflows/checks.yml b/src/Service/SecretsManager/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/SecretsManager/.github/workflows/checks.yml +++ b/src/Service/SecretsManager/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/SecretsManager/.github/workflows/ci.yml b/src/Service/SecretsManager/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/SecretsManager/.github/workflows/ci.yml +++ b/src/Service/SecretsManager/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Ses/.github/workflows/checks.yml b/src/Service/Ses/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Ses/.github/workflows/checks.yml +++ b/src/Service/Ses/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Ses/.github/workflows/ci.yml b/src/Service/Ses/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Ses/.github/workflows/ci.yml +++ b/src/Service/Ses/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Sns/.github/workflows/checks.yml b/src/Service/Sns/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Sns/.github/workflows/checks.yml +++ b/src/Service/Sns/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Sns/.github/workflows/ci.yml b/src/Service/Sns/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Sns/.github/workflows/ci.yml +++ b/src/Service/Sns/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Sqs/.github/workflows/checks.yml b/src/Service/Sqs/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Sqs/.github/workflows/checks.yml +++ b/src/Service/Sqs/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Sqs/.github/workflows/ci.yml b/src/Service/Sqs/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Sqs/.github/workflows/ci.yml +++ b/src/Service/Sqs/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Ssm/.github/workflows/checks.yml b/src/Service/Ssm/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Ssm/.github/workflows/checks.yml +++ b/src/Service/Ssm/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Ssm/.github/workflows/ci.yml b/src/Service/Ssm/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Ssm/.github/workflows/ci.yml +++ b/src/Service/Ssm/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Sso/.github/workflows/checks.yml b/src/Service/Sso/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Sso/.github/workflows/checks.yml +++ b/src/Service/Sso/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Sso/.github/workflows/ci.yml b/src/Service/Sso/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Sso/.github/workflows/ci.yml +++ b/src/Service/Sso/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/StepFunctions/.github/workflows/checks.yml b/src/Service/StepFunctions/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/StepFunctions/.github/workflows/checks.yml +++ b/src/Service/StepFunctions/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/StepFunctions/.github/workflows/ci.yml b/src/Service/StepFunctions/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/StepFunctions/.github/workflows/ci.yml +++ b/src/Service/StepFunctions/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/TimestreamQuery/.github/workflows/checks.yml b/src/Service/TimestreamQuery/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/TimestreamQuery/.github/workflows/checks.yml +++ b/src/Service/TimestreamQuery/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/TimestreamQuery/.github/workflows/ci.yml b/src/Service/TimestreamQuery/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/TimestreamQuery/.github/workflows/ci.yml +++ b/src/Service/TimestreamQuery/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/TimestreamWrite/.github/workflows/checks.yml b/src/Service/TimestreamWrite/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/TimestreamWrite/.github/workflows/checks.yml +++ b/src/Service/TimestreamWrite/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/TimestreamWrite/.github/workflows/ci.yml b/src/Service/TimestreamWrite/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/TimestreamWrite/.github/workflows/ci.yml +++ b/src/Service/TimestreamWrite/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/Translate/.github/workflows/checks.yml b/src/Service/Translate/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/Translate/.github/workflows/checks.yml +++ b/src/Service/Translate/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/Translate/.github/workflows/ci.yml b/src/Service/Translate/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/Translate/.github/workflows/ci.yml +++ b/src/Service/Translate/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize diff --git a/src/Service/XRay/.github/workflows/checks.yml b/src/Service/XRay/.github/workflows/checks.yml index c76732289..b9c47e84b 100644 --- a/src/Service/XRay/.github/workflows/checks.yml +++ b/src/Service/XRay/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/src/Service/XRay/.github/workflows/ci.yml b/src/Service/XRay/.github/workflows/ci.yml index 346792da6..9ed2af14b 100644 --- a/src/Service/XRay/.github/workflows/ci.yml +++ b/src/Service/XRay/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: coverage: none - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize tests run: make initialize