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
2 changes: 1 addition & 1 deletion .github/workflows/check-owners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: yq - portable yaml processor
uses: mikefarah/yq@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Build Documentation

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v7
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
continue-on-error: true

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osv-scanner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
branch: ${{ steps.vars.outputs.branch }}
is-prerelease: ${{ steps.vars.outputs.is-prerelease }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
needs: [prepare]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ needs.prepare.outputs.branch }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
needs: [prepare, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ needs.prepare.outputs.branch }}
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
name: release
url: https://github.com/kubeflow/sdk/releases
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ needs.prepare.outputs.branch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:

steps:
- name: Checkout Kubeflow SDK repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Checkout Kubeflow Trainer repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: kubeflow/trainer
ref: ${{ matrix.trainer-ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.11"
Expand All @@ -32,7 +32,7 @@ jobs:
name: Test (Python ${{ matrix.python-version }})

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-spark-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
df -h

- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python 3.11
uses: actions/setup-python@v7
Expand All @@ -49,7 +49,7 @@ jobs:
curl -sSfL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

- name: Checkout spark-operator
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: kubeflow/spark-operator
path: spark-operator
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-lockfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:

steps:
- name: Checkout PR branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: pr-code

- name: Checkout base branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.base_ref }}
path: base-code
Expand Down
Loading