Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4 (#74)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 10, 2023
1 parent b22362c commit c95eaf9
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so follow-up steps can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Checkov GitHub Action
if: ${{ inputs.continue_on_error == 'true' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:

- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
steps:

- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

steps:
- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Configure AWS credentials
if: ${{ inputs.provider == 'aws' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/infracost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
api-key: ${{ secrets.INFRACOST_API_KEY }}

- name: Checkout base branch
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.ref }}

Expand All @@ -51,7 +51,7 @@ jobs:
--out-file=/tmp/infracost-base.json
- name: Checkout PR branch
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
uses: actions/checkout@v4

- name: Generate Infracost diff
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sst_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
name: Run sst-deploy
steps:
- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: update environment variable in .env file
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# install AWS-cli
- name: Install AWS CLI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install AWS CLI
if: ${{ inputs.provider == 'aws' }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
# - Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# - Checking terraform Max and Min version.
- name: Terraform min/max versions
Expand All @@ -48,7 +48,7 @@ jobs:
steps:
# - Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# - Installing terraform version based on version extract.
- name: Install Terraform v${{ matrix.version }}
Expand All @@ -72,7 +72,7 @@ jobs:
steps:
# - Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# - Action added to install terraform
- name: Install Terraform v${{ needs.versionExtract.outputs.maxVersion }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tf-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout source code

- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tfdrift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install AWS CLI
if: ${{ inputs.provider == 'aws' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ymllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
Yaml-Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
Expand Down

0 comments on commit c95eaf9

Please sign in to comment.