From 64341bd8a0f3e57cd3334b58b825b7e699f2a0b2 Mon Sep 17 00:00:00 2001 From: josephyi Date: Tue, 14 Oct 2025 16:57:54 -0700 Subject: [PATCH] chore(CI): bump checkout action to v5 --- .github/actions/e2e-tests/action.yml | 2 +- .github/workflows/.reusable-deploy-ecs.yml | 6 +++--- .github/workflows/.reusable-docker-build.yml | 2 +- .github/workflows/.reusable-docker-e2e-tests.yml | 2 +- .github/workflows/.reusable-docker-publish.yml | 2 +- .github/workflows/.reusable-frontend-deploy.yml | 2 +- .github/workflows/api-pull-request.yml | 2 +- .github/workflows/api-run-makefile-target.yml | 2 +- .github/workflows/api-tests-with-private-packages.yml | 2 +- .github/workflows/docs-pull-request.yml | 2 +- .github/workflows/frontend-deploy-production.yml | 2 +- .github/workflows/frontend-test-staging.yml | 2 +- .github/workflows/manual-e2e-tests.yml | 2 +- .github/workflows/platform-docker-build-test-publish.yml | 2 +- .github/workflows/platform-docker-trivy-scan.yml | 2 +- .github/workflows/platform-pull-request.yml | 2 +- .github/workflows/poc-github-code-references.yml | 2 +- .github/workflows/update-flagsmith-environment.yml | 2 +- 18 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/actions/e2e-tests/action.yml b/.github/actions/e2e-tests/action.yml index 2248d3702da9..c1e44ab4657b 100644 --- a/.github/actions/e2e-tests/action.yml +++ b/.github/actions/e2e-tests/action.yml @@ -19,7 +19,7 @@ runs: using: composite steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: cache: npm diff --git a/.github/workflows/.reusable-deploy-ecs.yml b/.github/workflows/.reusable-deploy-ecs.yml index 4ac2a5d1c1fe..92460fb0b08a 100644 --- a/.github/workflows/.reusable-deploy-ecs.yml +++ b/.github/workflows/.reusable-deploy-ecs.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Depot CLI uses: depot/setup-action@v1 @@ -73,7 +73,7 @@ jobs: runs-on: depot-ubuntu-latest steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Deploy API to ${{ inputs.environment }} id: deploy-api @@ -113,7 +113,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run E2E tests against ${{ inputs.environment }} uses: ./.github/actions/e2e-tests diff --git a/.github/workflows/.reusable-docker-build.yml b/.github/workflows/.reusable-docker-build.yml index 09254e9a58d7..3a857b294535 100644 --- a/.github/workflows/.reusable-docker-build.yml +++ b/.github/workflows/.reusable-docker-build.yml @@ -84,7 +84,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Depot CLI uses: depot/setup-action@v1 diff --git a/.github/workflows/.reusable-docker-e2e-tests.yml b/.github/workflows/.reusable-docker-e2e-tests.yml index c4b52da84363..2285fae1663b 100644 --- a/.github/workflows/.reusable-docker-e2e-tests.yml +++ b/.github/workflows/.reusable-docker-e2e-tests.yml @@ -50,7 +50,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Login to Github Container Registry if: ${{ env.GCR_TOKEN }} diff --git a/.github/workflows/.reusable-docker-publish.yml b/.github/workflows/.reusable-docker-publish.yml index 7727ba96a6ee..9b3676e1ccec 100644 --- a/.github/workflows/.reusable-docker-publish.yml +++ b/.github/workflows/.reusable-docker-publish.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: sparse-checkout: depot.json sparse-checkout-cone-mode: false diff --git a/.github/workflows/.reusable-frontend-deploy.yml b/.github/workflows/.reusable-frontend-deploy.yml index 09634bb8beb3..5594ebe1d878 100644 --- a/.github/workflows/.reusable-frontend-deploy.yml +++ b/.github/workflows/.reusable-frontend-deploy.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/api-pull-request.yml b/.github/workflows/api-pull-request.yml index cac7e0c82b6a..e1551951d9f8 100644 --- a/.github/workflows/api-pull-request.yml +++ b/.github/workflows/api-pull-request.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Poetry run: make install-poetry diff --git a/.github/workflows/api-run-makefile-target.yml b/.github/workflows/api-run-makefile-target.yml index fd7149539499..dd6d53d03d93 100644 --- a/.github/workflows/api-run-makefile-target.yml +++ b/.github/workflows/api-run-makefile-target.yml @@ -31,7 +31,7 @@ jobs: runs-on: depot-ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Poetry run: make install-poetry diff --git a/.github/workflows/api-tests-with-private-packages.yml b/.github/workflows/api-tests-with-private-packages.yml index e002c4f3b1ac..9d296d6ece10 100644 --- a/.github/workflows/api-tests-with-private-packages.yml +++ b/.github/workflows/api-tests-with-private-packages.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Poetry run: make install-poetry diff --git a/.github/workflows/docs-pull-request.yml b/.github/workflows/docs-pull-request.yml index 969ba361ef7d..df7adacc3a79 100644 --- a/.github/workflows/docs-pull-request.yml +++ b/.github/workflows/docs-pull-request.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Use Node.js 20 uses: actions/setup-node@v4 diff --git a/.github/workflows/frontend-deploy-production.yml b/.github/workflows/frontend-deploy-production.yml index 6ca8f55c73f2..450d5f466f1e 100644 --- a/.github/workflows/frontend-deploy-production.yml +++ b/.github/workflows/frontend-deploy-production.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run E2E tests against production uses: ./.github/actions/e2e-tests diff --git a/.github/workflows/frontend-test-staging.yml b/.github/workflows/frontend-test-staging.yml index 14be482b461b..da8f552a281a 100644 --- a/.github/workflows/frontend-test-staging.yml +++ b/.github/workflows/frontend-test-staging.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run E2E tests against staging uses: ./.github/actions/e2e-tests diff --git a/.github/workflows/manual-e2e-tests.yml b/.github/workflows/manual-e2e-tests.yml index 2bfc550dd007..32c5626c79a5 100644 --- a/.github/workflows/manual-e2e-tests.yml +++ b/.github/workflows/manual-e2e-tests.yml @@ -15,7 +15,7 @@ jobs: runs-on: depot-ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: cache: npm diff --git a/.github/workflows/platform-docker-build-test-publish.yml b/.github/workflows/platform-docker-build-test-publish.yml index 1e99a4e0c4d4..5a273762636f 100644 --- a/.github/workflows/platform-docker-build-test-publish.yml +++ b/.github/workflows/platform-docker-build-test-publish.yml @@ -228,7 +228,7 @@ jobs: } - name: Checkout Target Charts Repository to update yaml - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: flagsmith/flagsmith-charts path: chart diff --git a/.github/workflows/platform-docker-trivy-scan.yml b/.github/workflows/platform-docker-trivy-scan.yml index 916ac550ea58..55490a2abe04 100644 --- a/.github/workflows/platform-docker-trivy-scan.yml +++ b/.github/workflows/platform-docker-trivy-scan.yml @@ -92,7 +92,7 @@ jobs: steps: - name: Checkout trivy.yaml - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: sparse-checkout: | trivy.yaml diff --git a/.github/workflows/platform-pull-request.yml b/.github/workflows/platform-pull-request.yml index 8cd5d3d00116..d2389ca6b4db 100644 --- a/.github/workflows/platform-pull-request.yml +++ b/.github/workflows/platform-pull-request.yml @@ -53,7 +53,7 @@ jobs: permissions: pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: sparse-checkout: .github/ sparse-checkout-cone-mode: false diff --git a/.github/workflows/poc-github-code-references.yml b/.github/workflows/poc-github-code-references.yml index 5c4d5dc102bc..a9990e0f65b1 100644 --- a/.github/workflows/poc-github-code-references.yml +++ b/.github/workflows/poc-github-code-references.yml @@ -19,7 +19,7 @@ jobs: runs-on: depot-ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python ${{ env.PYTHON_VERSION }} uses: astral-sh/setup-uv@v6 diff --git a/.github/workflows/update-flagsmith-environment.yml b/.github/workflows/update-flagsmith-environment.yml index 576b63688001..b636da7e6b17 100644 --- a/.github/workflows/update-flagsmith-environment.yml +++ b/.github/workflows/update-flagsmith-environment.yml @@ -17,7 +17,7 @@ jobs: FLAGSMITH_ON_FLAGSMITH_SERVER_KEY: ${{ secrets.FLAGSMITH_ON_FLAGSMITH_SERVER_KEY }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python 3.12 uses: actions/setup-python@v5