Skip to content

Commit 9551b1a

Browse files
committed
New data collected at 2025-04-14_00-02-29
1 parent 4357836 commit 9551b1a

40 files changed

Lines changed: 122 additions & 102 deletions

github-actions/diagrammer/test-coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- uses: r-lib/actions/setup-r@v2
2121
with:
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Upload test results
4646
if: failure()
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: coverage-test-failures
5050
path: ${{ runner.temp }}/package

github-actions/mlflow/advice.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
permissions:
1414
pull-requests: write # advice.js comments on PRs
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
sparse-checkout: |
1919
.github
20-
- uses: actions/github-script@v7
20+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2121
with:
2222
script: |
2323
const script = require(

github-actions/mlflow/autoformat.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
base_repo: ${{ fromJSON(steps.judge.outputs.result).base_repo }}
2828
pull_number: ${{ fromJSON(steps.judge.outputs.result).pull_number }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
with:
3232
sparse-checkout: |
3333
.github
3434
- uses: ./.github/actions/validate-author
3535
- name: judge
3636
id: judge
37-
uses: actions/github-script@v7
37+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
3838
with:
3939
script: |
4040
core.debug(JSON.stringify(context, null, 2));
@@ -58,7 +58,7 @@ jobs:
5858
outputs:
5959
reformatted: ${{ steps.patch.outputs.reformatted }}
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6262
with:
6363
repository: ${{ needs.check-comment.outputs.repository }}
6464
ref: ${{ needs.check-comment.outputs.head_ref }}
@@ -81,8 +81,8 @@ jobs:
8181
# Merge the base branch (which is usually master) to apply formatting using the latest configurations.
8282
- name: Merge base branch
8383
run: |
84-
git config user.name 'mlflow-automation'
85-
git config user.email 'mlflow-automation@users.noreply.github.com'
84+
git config user.name 'mlflow-app[bot]'
85+
git config user.email 'mlflow-app[bot]@users.noreply.github.com'
8686
git remote add base https://github.com/${{ needs.check-comment.outputs.base_repo }}.git
8787
git fetch base ${{ needs.check-comment.outputs.base_ref }}
8888
git merge base/${{ needs.check-comment.outputs.base_ref }}
@@ -154,7 +154,7 @@ jobs:
154154
echo "reformatted=$reformatted" >> $GITHUB_OUTPUT
155155
156156
- name: Upload patch
157-
uses: actions/upload-artifact@v4
157+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
158158
with:
159159
name: ${{ github.run_id }}.diff
160160
path: ${{ github.run_id }}.diff
@@ -168,14 +168,14 @@ jobs:
168168
outputs:
169169
head_sha: ${{ steps.push.outputs.head_sha }}
170170
steps:
171-
- uses: actions/create-github-app-token@v1
171+
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1.12.0
172172
id: app-token
173173
with:
174174
app-id: ${{ secrets.APP_ID }}
175175
# See https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/managing-private-keys-for-github-apps
176176
# for how to rotate the private key
177177
private-key: ${{ secrets.APP_PRIVATE_KEY }}
178-
- uses: actions/checkout@v4
178+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
179179
with:
180180
repository: ${{ needs.check-comment.outputs.repository }}
181181
ref: ${{ needs.check-comment.outputs.head_ref }}
@@ -191,14 +191,14 @@ jobs:
191191
BASE_REPO: ${{ needs.check-comment.outputs.base_repo }}
192192
BASE_REF: ${{ needs.check-comment.outputs.base_ref }}
193193
run: |
194-
git config user.name 'mlflow-automation'
195-
git config user.email 'mlflow-automation@users.noreply.github.com'
194+
git config user.name 'mlflow-app[bot]'
195+
git config user.email 'mlflow-app[bot]@users.noreply.github.com'
196196
git remote add base https://github.com/${BASE_REPO}.git
197197
git fetch base $BASE_REF
198198
git merge base/${BASE_REF}
199199
200200
- name: Download patch
201-
uses: actions/download-artifact@v4
201+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
202202
with:
203203
name: ${{ github.run_id }}.diff
204204
path: /tmp
@@ -223,12 +223,12 @@ jobs:
223223
statuses: write # To update check statuses
224224
actions: write # To approve workflow runs
225225
steps:
226-
- uses: actions/checkout@v4
226+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
227227
with:
228228
sparse-checkout: |
229229
.github
230230
- name: Update status
231-
uses: actions/github-script@v7
231+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
232232
with:
233233
script: |
234234
const needs = ${{ toJson(needs) }};

github-actions/mlflow/build-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
matrix:
3939
type: ["full", "skinny"]
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4242
with:
4343
ref: ${{ github.event.inputs.ref }}
4444
submodules: recursive
@@ -127,7 +127,7 @@ jobs:
127127
docker run --rm python:3.10 bash -c "pip install $URL && mlflow --version"
128128
# Anyone with read access can download the uploaded wheel on GitHub.
129129
- name: Upload wheel
130-
uses: actions/upload-artifact@v4
130+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
131131
if: github.event_name == 'workflow_dispatch'
132132
id: upload-wheel
133133
with:

github-actions/mlflow/cancel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
permissions:
1414
actions: write # to cancel workflow runs
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
sparse-checkout: |
1919
.github
20-
- uses: actions/github-script@v7
20+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2121
with:
2222
script: |
2323
const script = require(

github-actions/mlflow/cherry-picks-warn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
pull-requests: write # to post a comment on the PR
1616
steps:
17-
- uses: actions/github-script@v7
17+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
1818
with:
1919
script: |
2020
await github.rest.issues.createComment({

github-actions/mlflow/closing-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
pull-requests: read # closing-pr.js reads the PR body
1919
issues: write # closing-pr.js labels issues
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2222
with:
2323
sparse-checkout: |
2424
.github
25-
- uses: actions/github-script@v7
25+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2626
with:
2727
script: |
2828
const script = require(

github-actions/mlflow/cross-version-test-runner.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
pull-requests: write
1717
actions: write
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
with:
2121
sparse-checkout: |
2222
.github
2323
- uses: ./.github/actions/validate-author
24-
- uses: actions/github-script@v7
24+
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2525
id: get-ref
2626
with:
2727
result-encoding: string

github-actions/mlflow/cross-version-tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ defaults:
5050
env:
5151
MLFLOW_HOME: /home/runner/work/mlflow/mlflow
5252
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu
53+
PIP_CONSTRAINT: /home/runner/work/mlflow/mlflow/requirements/constraints.txt
5354

5455
jobs:
5556
set-matrix:
@@ -64,7 +65,7 @@ jobs:
6465
is_matrix1_empty: ${{ steps.set-matrix.outputs.is_matrix1_empty }}
6566
is_matrix2_empty: ${{ steps.set-matrix.outputs.is_matrix2_empty }}
6667
steps:
67-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6869
with:
6970
submodules: recursive
7071
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
@@ -76,7 +77,7 @@ jobs:
7677
pip install -r dev/requirements.txt
7778
pip install pytest pytest-cov
7879
- name: Check labels
79-
uses: actions/github-script@v7
80+
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
8081
id: check-labels
8182
with:
8283
script: |
@@ -132,7 +133,7 @@ jobs:
132133
fail-fast: false
133134
matrix: ${{ fromJson(needs.set-matrix.outputs.matrix1) }}
134135
steps:
135-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
136137
with:
137138
submodules: recursive
138139
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
@@ -148,7 +149,7 @@ jobs:
148149
java-version: ${{ matrix.java }}
149150
- name: Install mlflow & test dependencies
150151
run: |
151-
pip install wheel
152+
pip install -U pip wheel setuptools
152153
pip install .[extras]
153154
pip install -r requirements/test-requirements.txt
154155
- name: Install ${{ matrix.package }} ${{ matrix.version }}
@@ -179,7 +180,7 @@ jobs:
179180
fail-fast: false
180181
matrix: ${{ fromJson(needs.set-matrix.outputs.matrix2) }}
181182
steps:
182-
- uses: actions/checkout@v4
183+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
183184
with:
184185
submodules: recursive
185186
repository: ${{ github.event_name == 'schedule' && 'mlflow/mlflow' || github.event.inputs.repository }}
@@ -195,7 +196,7 @@ jobs:
195196
java-version: ${{ matrix.java }}
196197
- name: Install mlflow & test dependencies
197198
run: |
198-
pip install wheel
199+
pip install -U pip wheel setuptools
199200
pip install .[extras]
200201
pip install -r requirements/test-requirements.txt
201202
- name: Install ${{ matrix.package }} ${{ matrix.version }}

github-actions/mlflow/deployments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 30
2828
permissions: {}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3131
- uses: ./.github/actions/untracked
3232
- uses: ./.github/actions/setup-python
3333
- name: Install dependencies

0 commit comments

Comments
 (0)