diff --git a/.github/workflows/auto-approve-merge-bot.yml b/.github/workflows/auto-approve-merge-bot.yml index 21b431297..50bb84c24 100644 --- a/.github/workflows/auto-approve-merge-bot.yml +++ b/.github/workflows/auto-approve-merge-bot.yml @@ -19,7 +19,7 @@ jobs: github.event.pull_request.user.login == 'renovate' steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Auto approve PR uses: hmarr/auto-approve-action@v3 diff --git a/.github/workflows/deploy-pr-staging.yml b/.github/workflows/deploy-pr-staging.yml index d0a4ef9ff..040938bf2 100644 --- a/.github/workflows/deploy-pr-staging.yml +++ b/.github/workflows/deploy-pr-staging.yml @@ -48,7 +48,7 @@ jobs: fi - name: ⬇️ Checkout application code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.deploy_target == 'master' && 'master' || format('refs/pull/{0}/merge', inputs.pr_number) }} diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 92482a35d..816c920f8 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -13,7 +13,7 @@ jobs: bundle_audit: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: bundler-cache: true @@ -32,7 +32,7 @@ jobs: brakeman: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: bundler-cache: true @@ -66,7 +66,7 @@ jobs: runs-on: ${{ matrix.os }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index f1c946390..e34642304 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -23,7 +23,7 @@ jobs: options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - name: Checkout PR - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.head_ref }} token: ${{ secrets.GITHUB_TOKEN }}