diff --git a/.github/workflows/action-lint.yml b/.github/workflows/action-lint.yml index 752809c..2ff147c 100644 --- a/.github/workflows/action-lint.yml +++ b/.github/workflows/action-lint.yml @@ -6,7 +6,7 @@ jobs: action-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: reviewdog/action-actionlint@v1 with: fail_on_error: true diff --git a/.github/workflows/git-commit-lint.yaml b/.github/workflows/git-commit-lint.yaml index 336827d..8449a3c 100644 --- a/.github/workflows/git-commit-lint.yaml +++ b/.github/workflows/git-commit-lint.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: commitlint diff --git a/.github/workflows/go-test-integration.yaml b/.github/workflows/go-test-integration.yaml index 90c8418..7b9f416 100644 --- a/.github/workflows/go-test-integration.yaml +++ b/.github/workflows/go-test-integration.yaml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Go mod cache id: go-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/go-build diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index e88233d..c920e27 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Go uses: actions/setup-go@v6 with: @@ -18,7 +18,7 @@ jobs: check-latest: true - name: Go mod cache id: go-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cache/go-build diff --git a/.github/workflows/helm-deploy-eks.yaml b/.github/workflows/helm-deploy-eks.yaml index ad3d28b..4b95a10 100644 --- a/.github/workflows/helm-deploy-eks.yaml +++ b/.github/workflows/helm-deploy-eks.yaml @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Configure AWS Credentials diff --git a/.github/workflows/helm-deploy.yaml b/.github/workflows/helm-deploy.yaml index a6cf063..5482b83 100644 --- a/.github/workflows/helm-deploy.yaml +++ b/.github/workflows/helm-deploy.yaml @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Setup Helm diff --git a/.github/workflows/helm-deployv2.yaml b/.github/workflows/helm-deployv2.yaml index 4469d29..f6ee6b5 100644 --- a/.github/workflows/helm-deployv2.yaml +++ b/.github/workflows/helm-deployv2.yaml @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Setup Helm diff --git a/.github/workflows/helm-rollback.yaml b/.github/workflows/helm-rollback.yaml index 6e9a953..a9b17d8 100644 --- a/.github/workflows/helm-rollback.yaml +++ b/.github/workflows/helm-rollback.yaml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Setup Helm diff --git a/.github/workflows/java-lint.yaml b/.github/workflows/java-lint.yaml index 4e41caa..8ecf623 100644 --- a/.github/workflows/java-lint.yaml +++ b/.github/workflows/java-lint.yaml @@ -17,7 +17,7 @@ jobs: name: Java Spotless Autofix steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up JDK uses: actions/setup-java@v4 @@ -26,7 +26,7 @@ jobs: java-version: ${{ inputs.java_version }} - name: Cache Maven - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/java-stan.yaml b/.github/workflows/java-stan.yaml index d8ea9f6..3167a9c 100644 --- a/.github/workflows/java-stan.yaml +++ b/.github/workflows/java-stan.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Java uses: actions/setup-java@v4 @@ -35,7 +35,7 @@ jobs: cache: maven - name: Cache Maven repo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ inputs.cache_path }} key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/java-unit-test.yaml b/.github/workflows/java-unit-test.yaml index 8678c1f..0401ae3 100644 --- a/.github/workflows/java-unit-test.yaml +++ b/.github/workflows/java-unit-test.yaml @@ -37,7 +37,7 @@ jobs: name: JUnit steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 # better for Sonar reporting diff --git a/.github/workflows/jira-ticket-check.yaml b/.github/workflows/jira-ticket-check.yaml index 69aa4aa..6d1a16c 100644 --- a/.github/workflows/jira-ticket-check.yaml +++ b/.github/workflows/jira-ticket-check.yaml @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/kube-lint.yaml b/.github/workflows/kube-lint.yaml index f2daaa6..bc57716 100644 --- a/.github/workflows/kube-lint.yaml +++ b/.github/workflows/kube-lint.yaml @@ -15,10 +15,10 @@ jobs: KUBE_LINTER_VERSION: '0.8.1' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache kube-linter id: cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: kube-linter key: kube-linter-${{ env.KUBE_LINTER_VERSION }} diff --git a/.github/workflows/openapi-generate-go-client.yaml b/.github/workflows/openapi-generate-go-client.yaml index b91f6d9..720df37 100644 --- a/.github/workflows/openapi-generate-go-client.yaml +++ b/.github/workflows/openapi-generate-go-client.yaml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Remove Generated Files continue-on-error: true run: xargs -I{} rm -rf "{}" < .openapi-generator/FILES diff --git a/.github/workflows/openapi-generate-javascript-client.yaml b/.github/workflows/openapi-generate-javascript-client.yaml index 2f59911..e971c8d 100644 --- a/.github/workflows/openapi-generate-javascript-client.yaml +++ b/.github/workflows/openapi-generate-javascript-client.yaml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Remove Generated Files continue-on-error: true run: xargs -I{} rm -rf "{}" < .openapi-generator/FILES diff --git a/.github/workflows/openapi-generate-php-client.yaml b/.github/workflows/openapi-generate-php-client.yaml index a787cef..2cac863 100644 --- a/.github/workflows/openapi-generate-php-client.yaml +++ b/.github/workflows/openapi-generate-php-client.yaml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Remove Generated Files continue-on-error: true run: xargs -I{} rm -rf "{}" < .openapi-generator/FILES @@ -102,7 +102,7 @@ jobs: tools: composer:v2 coverage: none - name: Install dependencies - uses: nick-invision/retry@v1 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/openapi-generate-typescript-client.yaml b/.github/workflows/openapi-generate-typescript-client.yaml index 5468437..c2b8617 100644 --- a/.github/workflows/openapi-generate-typescript-client.yaml +++ b/.github/workflows/openapi-generate-typescript-client.yaml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Remove Generated Files continue-on-error: true run: xargs -I{} rm -rf "{}" < .openapi-generator/FILES diff --git a/.github/workflows/openapi-lint.yml b/.github/workflows/openapi-lint.yml index aa8d88a..b954e09 100644 --- a/.github/workflows/openapi-lint.yml +++ b/.github/workflows/openapi-lint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: kong/setup-inso@v1 with: inso-version: 3.5.0 diff --git a/.github/workflows/php-build-push.yaml b/.github/workflows/php-build-push.yaml index a2dc72a..72ea63d 100644 --- a/.github/workflows/php-build-push.yaml +++ b/.github/workflows/php-build-push.yaml @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.ref }} @@ -54,7 +54,7 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -62,7 +62,7 @@ jobs: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v1 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php-cli-build-push.yaml b/.github/workflows/php-cli-build-push.yaml index 436cf3b..67c11d4 100644 --- a/.github/workflows/php-cli-build-push.yaml +++ b/.github/workflows/php-cli-build-push.yaml @@ -34,7 +34,7 @@ jobs: name: Build + Push Image steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -56,13 +56,13 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v2 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php-common-bump.yaml b/.github/workflows/php-common-bump.yaml index bc05483..2f97d1a 100644 --- a/.github/workflows/php-common-bump.yaml +++ b/.github/workflows/php-common-bump.yaml @@ -35,7 +35,7 @@ jobs: commit_sha: ${{ steps.commit.outputs.sha }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: "${{ secrets.write_pat }}" - name: Setup PHP @@ -47,7 +47,7 @@ jobs: - name: Get Composer Cache Directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -56,7 +56,7 @@ jobs: - name: Install dependencies env: COMPOSER_AUTH: '{"http-basic": {"repo.packagist.com": {"username": "${{ secrets.packagist_username }}", "password": "${{secrets.packagist_password}}"}}}' - uses: nick-invision/retry@v1 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 @@ -64,7 +64,7 @@ jobs: - name: Update Common env: COMPOSER_AUTH: '{"http-basic": {"repo.packagist.com": {"username": "${{ secrets.packagist_username }}", "password": "${{secrets.packagist_password}}"}}}' - uses: nick-invision/retry@v1 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php-cs-fixer.yaml b/.github/workflows/php-cs-fixer.yaml index 5b11a54..62d9bf0 100644 --- a/.github/workflows/php-cs-fixer.yaml +++ b/.github/workflows/php-cs-fixer.yaml @@ -34,7 +34,7 @@ jobs: name: PHP CS Fixer steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} @@ -45,7 +45,7 @@ jobs: tools: composer:v2 - name: Cache PHP CS Fixer - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .php-cs-fixer.cache key: ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-${{ github.sha }} diff --git a/.github/workflows/php-laravel-build-push.yaml b/.github/workflows/php-laravel-build-push.yaml index 4a5b2c7..44d5636 100644 --- a/.github/workflows/php-laravel-build-push.yaml +++ b/.github/workflows/php-laravel-build-push.yaml @@ -49,7 +49,7 @@ jobs: name: Build + Push Application Image steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -71,13 +71,13 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v2 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 @@ -114,7 +114,7 @@ jobs: name: Build + Push Webserver (e.g. nginx) Image steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to GitHub Container Registry @@ -142,7 +142,7 @@ jobs: name: Build + Push CLI Image steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -164,13 +164,13 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v2 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php-laravel-pint.yaml b/.github/workflows/php-laravel-pint.yaml index 2711519..6957aae 100644 --- a/.github/workflows/php-laravel-pint.yaml +++ b/.github/workflows/php-laravel-pint.yaml @@ -13,9 +13,9 @@ jobs: name: Laravel Pint Autofix steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache PHP CS Fixer - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .php-cs-fixer.cache key: ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-${{ github.sha }} diff --git a/.github/workflows/php-laravel-test.yaml b/.github/workflows/php-laravel-test.yaml index 1992971..e9906f4 100644 --- a/.github/workflows/php-laravel-test.yaml +++ b/.github/workflows/php-laravel-test.yaml @@ -56,7 +56,7 @@ jobs: - 5432:5432 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: diff --git a/.github/workflows/php-lint.yaml b/.github/workflows/php-lint.yaml index 1c6ed79..c7c9e45 100644 --- a/.github/workflows/php-lint.yaml +++ b/.github/workflows/php-lint.yaml @@ -18,7 +18,7 @@ jobs: name: PHP Lint steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/php-nginx-build-push.yaml b/.github/workflows/php-nginx-build-push.yaml index 6180eee..95bd18c 100644 --- a/.github/workflows/php-nginx-build-push.yaml +++ b/.github/workflows/php-nginx-build-push.yaml @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ inputs.ref }} diff --git a/.github/workflows/php-stan.yaml b/.github/workflows/php-stan.yaml index 946b0cf..7e9d929 100644 --- a/.github/workflows/php-stan.yaml +++ b/.github/workflows/php-stan.yaml @@ -43,7 +43,7 @@ jobs: name: PHPStan steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/php-tavern-integration-test.yaml b/.github/workflows/php-tavern-integration-test.yaml index ef951c1..a4e93f9 100644 --- a/.github/workflows/php-tavern-integration-test.yaml +++ b/.github/workflows/php-tavern-integration-test.yaml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -49,13 +49,13 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v2 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php-unit-test.yaml b/.github/workflows/php-unit-test.yaml index 5602f00..9446ddc 100644 --- a/.github/workflows/php-unit-test.yaml +++ b/.github/workflows/php-unit-test.yaml @@ -42,7 +42,7 @@ jobs: name: PHPUnit steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Disabling shallow clone is recommended for improving relevancy of Sonar reporting fetch-depth: 0 @@ -69,13 +69,13 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - uses: nick-invision/retry@v2 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/.github/workflows/php7-cs-fixer.yaml b/.github/workflows/php7-cs-fixer.yaml index c3282b4..e6bf095 100644 --- a/.github/workflows/php7-cs-fixer.yaml +++ b/.github/workflows/php7-cs-fixer.yaml @@ -15,12 +15,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} - name: Cache PHP CS Fixer - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .php-cs-fixer.cache key: ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-${{ github.sha }} diff --git a/.github/workflows/semantic-release.yaml b/.github/workflows/semantic-release.yaml index b5356dd..7c84ec3 100644 --- a/.github/workflows/semantic-release.yaml +++ b/.github/workflows/semantic-release.yaml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ inputs.runs_on }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Bump version and push tag