Skip to content

Commit

Permalink
Upgrade checkout action to fix RSA key (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorah committed Mar 24, 2023
1 parent b40f5ff commit ee1d617
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stats.yml
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion deploy-to-cloudformation/action.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion execute-terraform/action.yml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion install-dependencies/action.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion run-cypress/action.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup/action.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sourcegraph/action.yml
Expand Up @@ -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
Expand Down

0 comments on commit ee1d617

Please sign in to comment.