From 3cb76c6e3707d1ee7cf3ee2a3fcba9821cdef7d8 Mon Sep 17 00:00:00 2001 From: Andy Trevorah Date: Fri, 24 Mar 2023 10:54:16 +0000 Subject: [PATCH] Upgrade checkout action to fix RSA key v3.5 has just been released with the new rsa key https://github.com/actions/checkout/pull/1237 --- .github/workflows/static.yml | 4 ++-- .github/workflows/stats.yml | 2 +- deploy-to-cloudformation/action.yml | 2 +- execute-terraform/action.yml | 2 +- install-dependencies/action.yml | 2 +- run-cypress/action.yml | 2 +- setup/action.yml | 2 +- sourcegraph/action.yml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index ec6cf1f..648000f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5 - name: "Check file existence" uses: andstor/file-existence-action@v2 @@ -54,7 +54,7 @@ jobs: matrix: environment: ["dev", "staging", "prod"] steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3.5 - uses: stampedeapp/actions/cloudformation-validate@main with: environment: ${{ matrix.environment }} diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml index 327999c..8fdcf4c 100644 --- a/.github/workflows/stats.yml +++ b/.github/workflows/stats.yml @@ -32,7 +32,7 @@ jobs: typescript-percent: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.5 - name: Get typescript percent run: | export percent=$(echo "$(find src -name '*.ts' | wc -l | xargs) / $(find src -name '*.[tj]s' | wc -l | xargs) * 100" | bc -l) diff --git a/deploy-to-cloudformation/action.yml b/deploy-to-cloudformation/action.yml index edfd9ff..40e7bf1 100644 --- a/deploy-to-cloudformation/action.yml +++ b/deploy-to-cloudformation/action.yml @@ -43,7 +43,7 @@ runs: using: composite steps: - name: Checkout - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v3.5 - name: Configure AWS credentials # Log in without assuming role first, to get ECR registry name diff --git a/execute-terraform/action.yml b/execute-terraform/action.yml index 2b60e2a..a6ea10e 100644 --- a/execute-terraform/action.yml +++ b/execute-terraform/action.yml @@ -17,7 +17,7 @@ inputs: runs: using: composite steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3.5 - uses: hashicorp/setup-terraform@v2 with: cli_config_credentials_token: ${{ inputs.cli_config_credentials_token }} diff --git a/install-dependencies/action.yml b/install-dependencies/action.yml index 2ea9e4a..d092ef8 100644 --- a/install-dependencies/action.yml +++ b/install-dependencies/action.yml @@ -15,7 +15,7 @@ inputs: runs: using: composite steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3.5 - id: check-cache uses: martijnhols/actions-cache/check@v3 with: diff --git a/run-cypress/action.yml b/run-cypress/action.yml index 637df46..12d5370 100644 --- a/run-cypress/action.yml +++ b/run-cypress/action.yml @@ -19,7 +19,7 @@ runs: using: composite steps: - name: Checkout E2E testing - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v3.5 with: repository: 'stampedeapp/e2e-testing' ref: main diff --git a/setup/action.yml b/setup/action.yml index 545efe4..ab0219b 100644 --- a/setup/action.yml +++ b/setup/action.yml @@ -14,7 +14,7 @@ inputs: runs: using: composite steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v3.5 with: ref: ${{ inputs.ref }} - uses: martijnhols/actions-cache/restore@v3 diff --git a/sourcegraph/action.yml b/sourcegraph/action.yml index e879bff..22cdec2 100644 --- a/sourcegraph/action.yml +++ b/sourcegraph/action.yml @@ -5,7 +5,7 @@ runs: using: composite steps: - name: Checkout - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v3.5 - name: Generate LSIF data shell: bash