Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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