Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/examples_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:
pull-requests: write
steps:
- name: Checkout source code so we can install the action locally
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Setup Infracost
uses: ./setup
with:
api-key: ${{ secrets.INFRACOST_API_KEY }}
- name: Checkout base branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with: {}
- name: Generate Infracost cost estimate baseline
run: |
infracost breakdown --path=testdata/code/example-project \
--format=json \
--out-file=/tmp/infracost-base.json
- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Replace m5 instance
run: >-
find testdata/code -type f -name '*.tf' -o -name '*.hcl' -o -name
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scanner_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- { goos: darwin, goarch: amd64, runner: macos-latest }
- { goos: darwin, goarch: arm64, runner: macos-latest }
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/scanner_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Unit Tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
Expand All @@ -32,7 +32,7 @@ jobs:
name: Integration Tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
Expand All @@ -52,7 +52,7 @@ jobs:
name: Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
Expand All @@ -69,7 +69,7 @@ jobs:
name: Mocks
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-go@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
version: ["<0.9.11", "0.9.12", "0.10.x", "latest"]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup infracost
uses: ./setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
working-directory: setup
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- run: npm install

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
steps:
# Checkout the branch you want Infracost to compare costs against, most commonly the target branch.
- name: Checkout base branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: '${{ github.event.pull_request.base.ref }}'

Expand All @@ -43,7 +43,7 @@ runs:


# Checkout the PR branch with your infrastructure changes.
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run Infracost
shell: bash
Expand Down
Loading