Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#390)
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 14, 2023
1 parent 3160b64 commit 974332f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build and push image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and push Docker image
# Skip running on forks or Dependabot since neither has access to secrets
if: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/end_to_end_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
one_of: major,minor,patch
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
none_of: missing
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
any_of: major,minor,patch
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
one_of: major,minor,patch
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- id: success_scenario
uses: ./
with:
Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
# Run the workflow using the label checker code in the branch for the current PR
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
prefix_mode: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github_tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
-
Expand All @@ -52,7 +52,7 @@ jobs:
name: Build and push image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
go-version: '1.21.0'
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Tests
env:
INPUT_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: runner / golangci-lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: reviewdog/action-golangci-lint@v1
with:
github_token: ${{ secrets.github_token }}
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: hadolint
uses: reviewdog/action-hadolint@v1
with:
Expand All @@ -39,7 +39,7 @@ jobs:
name: runner / yamllint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: yamllint
uses: reviewdog/action-yamllint@v1
with:
Expand All @@ -50,7 +50,7 @@ jobs:
name: runner / shellcheck
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
with:
Expand All @@ -64,7 +64,7 @@ jobs:
name: runner / misspell
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
Expand All @@ -75,7 +75,7 @@ jobs:
name: runner / languagetool
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: reviewdog/action-languagetool@v1
with:
github_token: ${{ secrets.github_token }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# Repo code checkout required if `template` is used
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: imjohnbo/extract-issue-template-fields@v1
id: extract
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/virtual_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
go-version: '1.21.0'
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Hoverfly
# do not specify a specific semver version or we will have an infinite circular dependency loop,
# between the hoverfly-github-action and this label-checker
Expand Down

0 comments on commit 974332f

Please sign in to comment.