Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 7f59d83

Browse files
chore: Bump actions/checkout from 2 to 3 (#1822)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9a9b7cf commit 7f59d83

6 files changed

+8
-8
lines changed

Diff for: .github/workflows/lambda-runner-binaries-syncer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: modules/runner-binaries-syncer/lambdas/runner-binaries-syncer
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Install dependencies
2222
run: yarn install
2323
- name: Run prettier

Diff for: .github/workflows/lambda-runners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: modules/runners/lambdas/runners
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Install dependencies
2222
run: yarn install
2323
- name: Run prettier

Diff for: .github/workflows/lambda-webhook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
working-directory: modules/webhook/lambdas/webhook
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: Install dependencies
2222
run: yarn install
2323
- name: Run prettier

Diff for: .github/workflows/packer-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
working-directory: images/${{ matrix.image }}
2828
steps:
2929
- name: "Checkout"
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131

3232
- name: packer init
3333
run: packer init .

Diff for: .github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
LAMBDA: ${{ matrix.lambda }}
2323
run: echo ::set-output name=name::${LAMBDA##*/}
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- name: Add zip
2626
run: apt update && apt install zip
2727
- name: Build dist
@@ -39,7 +39,7 @@ jobs:
3939
needs:
4040
prepare
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343
with:
4444
fetch-depth: 0
4545
persist-credentials: false

Diff for: .github/workflows/terraform.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
image: hashicorp/terraform:${{ matrix.terraform }}
2222
steps:
2323
- name: "Checkout"
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
- name: "Fake zip files" # Validate will fail if it cannot find the zip files
2626
run: |
2727
touch modules/webhook/lambdas/webhook/webhook.zip
@@ -53,7 +53,7 @@ jobs:
5353
container:
5454
image: hashicorp/terraform:${{ matrix.terraform }}
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
- name: terraform init
5858
run: terraform init -get -backend=false -input=false
5959
- if: contains(matrix.terraform, '1.1.')

0 commit comments

Comments
 (0)