Skip to content

Commit

Permalink
fix(deps): bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Mar 7, 2022
1 parent 8766308 commit 3140a25
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
working-directory: provisioning/terraform
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
# Checks that all Terraform configuration files adhere to a canonical format
- name: Terraform Format
run: terraform fmt -check
Expand All @@ -23,7 +23,7 @@ jobs:
- sanity-checks
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get short SHA
id: sha
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
working-directory: provisioning/terraform
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get short SHA
id: sha
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
working-directory: provisioning/terraform
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
# Checks that all Terraform configuration files adhere to a canonical format
- name: Terraform Format
run: terraform fmt -check
Expand All @@ -23,7 +23,7 @@ jobs:
- sanity-checks
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get short SHA
id: sha
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
working-directory: provisioning/terraform
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get short SHA
id: sha
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '12.x'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ts-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Typescript Compile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: install node v12
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
Expand Down

0 comments on commit 3140a25

Please sign in to comment.