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

Update actions/checkout action to v4 #26

Merged
merged 1 commit into from
Sep 12, 2023
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
container: hashicorp/terraform
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Terraform Format Check
run: terraform fmt -check -recursive -diff

Expand All @@ -32,7 +32,7 @@ jobs:
}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Terraform Init
run: terraform init -upgrade
working-directory: ${{ matrix.dir }}
Expand All @@ -56,7 +56,7 @@ jobs:
- 4566:4566
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Terraform Init
run: terraform init -upgrade
working-directory: ${{ matrix.dir }}
Expand All @@ -73,7 +73,7 @@ jobs:
}
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run infracost diff
uses: infracost/infracost-gh-action@master
env:
Expand Down