Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4 (#525)
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 19, 2023
1 parent a16ab23 commit a87f92d
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
go-version: "1.20"

- name: Check out shell-operator code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Go modules
id: go-modules-cache
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
# name: Darwin binary
# runs-on: macos-10.15
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
#
# - name: install jq
# run: |
Expand All @@ -71,7 +71,7 @@ jobs:
# name: Windows binary
# runs-on: windows-2019
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
#
# - name: build shell-operator binary
# run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
go-version: "1.20"

- name: Check out shell-operator code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Go modules
id: go-modules-cache
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
python-version: 3.8

- name: Check out addon-operator code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run codespell
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- check
if: needs.check.outputs.run_publish == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare environment
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- check
if: needs.check.outputs.run_publish == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Prepare environment
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-labeled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
go-version: "1.20"

- name: Check out shell-operator code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Go modules
id: go-modules-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
go-version: "1.20"

- name: Check out shell-operator code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Go modules
id: go-modules-cache
Expand Down

0 comments on commit a87f92d

Please sign in to comment.