Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade checkout action to fix RSA key #50

Merged
merged 1 commit into from Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

technically it was only necessary here, but might as well be consistent.

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