Skip to content
Open
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.23"

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

- name: Restore Go modules
id: go-modules-cache
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
# name: Darwin binary
# runs-on: macos-10.15
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
#
# - name: install jq
# run: |
Expand All @@ -64,7 +64,7 @@ jobs:
# name: Windows binary
# runs-on: windows-2019
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
#
# - 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@v4
- uses: actions/checkout@v5

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
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.23"

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

- 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@v4
uses: actions/checkout@v5

- 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@v4
- uses: actions/checkout@v5

- 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 @@ -83,7 +83,7 @@ jobs:
- check
if: needs.check.outputs.run_publish == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- 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.23"

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

- 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.23"

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

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