Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent 032a802 commit b4a2543
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run Super-Linter
uses: github/[email protected]
env:
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/[email protected]
with:
Expand All @@ -40,7 +40,7 @@ jobs:
with:
go-version: 1.17
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check if generated documentation is up-to-date
run: make check-docs

Expand All @@ -54,6 +54,6 @@ jobs:
with:
go-version: 1.17
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check Go module consistency
run: make check-go-mod
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
go-version: 1.17
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: make build

Expand All @@ -46,7 +46,7 @@ jobs:
with:
go-version: 1.17
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run tests
env:
TF_ACC_TERRAFORM_VERSION: ${{ matrix.terraform }}
Expand Down

0 comments on commit b4a2543

Please sign in to comment.