Skip to content

Commit 8a8032b

Browse files
authored
Merge branch 'opendatahub-io:main' into main
2 parents 6b957af + d2c19b9 commit 8a8032b

File tree

303 files changed

+20761
-9931
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+20761
-9931
lines changed

.coderabbit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ reviews:
1010
high_level_summary_in_walkthrough: false
1111
auto_title_placeholder: '@coderabbitai'
1212
auto_title_instructions: ''
13-
review_status: true
13+
review_status: false
1414
commit_status: true
1515
fail_commit_status: false
1616
collapse_walkthrough: true

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
* @opendatahub-io/opendatahub-tests-contributors
1212

1313
# Test directory specific rules
14-
tests/model_explainability/ @adolfo-ab @sheltoncyril
14+
tests/model_explainability/ @adolfo-ab @sheltoncyril @kpunwatk
1515
tests/model_registry/ @dbasunag @lugi0 @fege
16-
tests/model_serving/ @mwaykole @Raghul-M
16+
tests/model_serving/ @mwaykole @Raghul-M @brettmthompson @threcc @malhajfr
1717
tests/rag/ @jgarciao @jiripetrlik
1818
tests/workbenches @jstourac @andyatmiami

.github/workflows/add-remove-labels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- name: Acknowledge the request with thumbs up reaction
2828
if: ${{ github.event.comment }}
29-
uses: peter-evans/create-or-update-comment@v4
29+
uses: peter-evans/create-or-update-comment@v5
3030
with:
3131
comment-id: ${{ github.event.comment.id }}
3232
reactions: '+1'
@@ -35,10 +35,10 @@ jobs:
3535
runs-on: ubuntu-latest
3636

3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939

4040
- name: Install uv
41-
uses: astral-sh/setup-uv@v6
41+
uses: astral-sh/setup-uv@v7
4242

4343
- name: Run add remove labels
4444
env:

.github/workflows/add-welcome-comment-set-assignee.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Install uv
18-
uses: astral-sh/setup-uv@v6
18+
uses: astral-sh/setup-uv@v7
1919

2020
- name: Run add welcome comment
2121
env:

.github/workflows/build-push-container-on-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout Repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
- name: Set env TAG
2020
run: |
2121
if [ ${{ github.event.pull_request.base.ref }} == "main" ]; then

.github/workflows/cherry-pick-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout the latest code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
token: ${{ secrets.RHODS_CI_BOT_PAT }}
2121
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

.github/workflows/close-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v9
10+
- uses: actions/stale@v10
1111
with:
1212
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
1313
days-before-stale: 60

.github/workflows/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/labeler@v5
12+
- uses: actions/checkout@v6
13+
- uses: actions/labeler@v6

.github/workflows/on-review-add-label.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: 'Download artifact'
25-
uses: actions/github-script@v7
25+
uses: actions/github-script@v8
2626
with:
2727
script: |
2828
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
@@ -48,7 +48,7 @@ jobs:
4848
- name: 'Unzip artifact'
4949
run: unzip context.zip
5050
- name: 'Return Parsed JSON'
51-
uses: actions/github-script@v7
51+
uses: actions/github-script@v8
5252
id: return-parsed-json
5353
with:
5454
script: |
@@ -79,10 +79,10 @@ jobs:
7979
echo "REVIEW_COMMENT_BODY=${{ needs.download_context_artifact.outputs.review_comment_body }}" >> "$GITHUB_ENV"
8080
echo "GITHUB_USER_LOGIN=${{ needs.download_context_artifact.outputs.user_login }}" >> "$GITHUB_ENV"
8181
echo "ACTION=${{ needs.download_context_artifact.outputs.action }}" >> "$GITHUB_ENV"
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v6
8383

8484
- name: Install uv
85-
uses: astral-sh/setup-uv@v6
85+
uses: astral-sh/setup-uv@v7
8686
- name: 'Run add-remove-labels action'
8787
env:
8888
GITHUB_TOKEN: ${{ secrets.RHODS_CI_BOT_PAT }}

.github/workflows/push-container-on-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout pull request
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
ref: refs/pull/${{ github.event.issue.number }}/head
2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v6
22+
uses: astral-sh/setup-uv@v7
2323

2424
- name: Check if the user is authorized
2525
env:

0 commit comments

Comments
 (0)