Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/checkout from 3 to 4 #525

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading