diff --git a/.github/workflows/template_autodev.yml b/.github/workflows/template_autodev.yml index 8947887a..51bdb0a3 100644 --- a/.github/workflows/template_autodev.yml +++ b/.github/workflows/template_autodev.yml @@ -74,7 +74,7 @@ jobs: private-key: ${{ secrets.private_key }} - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ env.USING_APP_CREDENTIALS == 'true' && steps.get_token.outputs.token || secrets.token }} fetch-depth: 0 diff --git a/.github/workflows/template_changeset_check.yml b/.github/workflows/template_changeset_check.yml index fef6444b..eaf9e52e 100644 --- a/.github/workflows/template_changeset_check.yml +++ b/.github/workflows/template_changeset_check.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout code - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5 - name: Check for changesets id: changeset-files diff --git a/.github/workflows/template_changeset_release.yml b/.github/workflows/template_changeset_release.yml index 65e41d62..441b7572 100644 --- a/.github/workflows/template_changeset_release.yml +++ b/.github/workflows/template_changeset_release.yml @@ -42,7 +42,7 @@ jobs: private-key: ${{ secrets.private_key }} - name: Checkout - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5 with: token: ${{ steps.get_token.outputs.token }} diff --git a/.github/workflows/template_gitops.yml b/.github/workflows/template_gitops.yml index ff27876d..2454e765 100644 --- a/.github/workflows/template_gitops.yml +++ b/.github/workflows/template_gitops.yml @@ -103,7 +103,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get App Token if: ${{ env.USING_APP_CREDENTIALS == 'true' }} diff --git a/.github/workflows/template_jira_tagging.yml b/.github/workflows/template_jira_tagging.yml index 04c084ac..8c3e4ad0 100644 --- a/.github/workflows/template_jira_tagging.yml +++ b/.github/workflows/template_jira_tagging.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: false diff --git a/.github/workflows/template_launchdarkly_code_references.yml b/.github/workflows/template_launchdarkly_code_references.yml index fed5a13e..12649159 100644 --- a/.github/workflows/template_launchdarkly_code_references.yml +++ b/.github/workflows/template_launchdarkly_code_references.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create Files run: | mkdir .launchdarkly diff --git a/.github/workflows/template_secret_scan.yml b/.github/workflows/template_secret_scan.yml index 79b44dd0..1f6565a2 100644 --- a/.github/workflows/template_secret_scan.yml +++ b/.github/workflows/template_secret_scan.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: false diff --git a/.github/workflows/template_techdocs.yml b/.github/workflows/template_techdocs.yml index 5b9ca9e6..64d2b7c1 100644 --- a/.github/workflows/template_techdocs.yml +++ b/.github/workflows/template_techdocs.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build and Publish Site uses: Staffbase/backstage-techdocs-action@v0.2.2 diff --git a/.github/workflows/template_techdocs_monorepo.yml b/.github/workflows/template_techdocs_monorepo.yml index cc612ee5..37a166b1 100644 --- a/.github/workflows/template_techdocs_monorepo.yml +++ b/.github/workflows/template_techdocs_monorepo.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5 - name: Setup Node uses: actions/setup-node@v4.4.0 diff --git a/.github/workflows/template_terraform_format.yml b/.github/workflows/template_terraform_format.yml index f0cabd0d..05243547 100644 --- a/.github/workflows/template_terraform_format.yml +++ b/.github/workflows/template_terraform_format.yml @@ -34,7 +34,7 @@ jobs: private-key: ${{ secrets.private-key }} - name: Checkout - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v5 with: ref: ${{ github.head_ref }} token: ${{ steps.get_token.outputs.token }} diff --git a/.github/workflows/template_yaml.yml b/.github/workflows/template_yaml.yml index a418f2bf..82d64813 100644 --- a/.github/workflows/template_yaml.yml +++ b/.github/workflows/template_yaml.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Lint and Annotate uses: staffbase/yamllint-action@v1.4.1 diff --git a/.github/workflows/versions.yml b/.github/workflows/versions.yml index ea02cb9f..f377eb67 100644 --- a/.github/workflows/versions.yml +++ b/.github/workflows/versions.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout the source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Find and Replace old versions run: | sed -i -E 's/(v[0-9]+.[0-9]+.[0-9]+)/${{ github.ref_name }}/g' README.md