Skip to content

Commit c95eaf9

Browse files
build(deps): bump actions/checkout from 3 to 4 (#74)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b22362c commit c95eaf9

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
token: ${{ secrets.GITHUB }}
2424

.github/workflows/checkov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Steps represent a sequence of tasks that will be executed as part of the job
3232
steps:
3333
# Checks-out your repository under $GITHUB_WORKSPACE, so follow-up steps can access it
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535

3636
- name: Checkov GitHub Action
3737
if: ${{ inputs.continue_on_error == 'true' }}

.github/workflows/docker-scanner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717

1818
- name: Checkout git repo
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up QEMU
2222
uses: docker/setup-qemu-action@v2

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242

4343
- name: Checkout git repo
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545

4646
- name: Login to Docker Hub
4747
uses: docker/login-action@v2

.github/workflows/helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout git repo
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v4
8484

8585
- name: Configure AWS credentials
8686
if: ${{ inputs.provider == 'aws' }}

.github/workflows/infracost.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
api-key: ${{ secrets.INFRACOST_API_KEY }}
3434

3535
- name: Checkout base branch
36-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
36+
uses: actions/checkout@v4
3737
with:
3838
ref: ${{ github.event.pull_request.base.ref }}
3939

@@ -51,7 +51,7 @@ jobs:
5151
--out-file=/tmp/infracost-base.json
5252
5353
- name: Checkout PR branch
54-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
54+
uses: actions/checkout@v4
5555

5656
- name: Generate Infracost diff
5757
run: |

.github/workflows/sst_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
name: Run sst-deploy
7676
steps:
7777
- name: Checkout git repo
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979

8080
- name: update environment variable in .env file
8181
run: |

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
# Checkout the repository to the GitHub Actions runner
6161
- name: Checkout
62-
uses: actions/checkout@v3
62+
uses: actions/checkout@v4
6363

6464
# install AWS-cli
6565
- name: Install AWS CLI

.github/workflows/terraform_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
9191

9292
- name: Install AWS CLI
9393
if: ${{ inputs.provider == 'aws' }}

.github/workflows/tf-checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# - Checkout the repository to the GitHub Actions runner
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
# - Checking terraform Max and Min version.
3030
- name: Terraform min/max versions
@@ -48,7 +48,7 @@ jobs:
4848
steps:
4949
# - Checkout the repository to the GitHub Actions runner
5050
- name: Checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252

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

7777
# - Action added to install terraform
7878
- name: Install Terraform v${{ needs.versionExtract.outputs.maxVersion }}

0 commit comments

Comments
 (0)