Skip to content

Commit dbb23e9

Browse files
committed
Merge branch 'main' into fix/generalize-gpu-allocated-stat-field
2 parents f64077e + 2ccb59e commit dbb23e9

File tree

805 files changed

+36512
-9792
lines changed

Some content is hidden

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

805 files changed

+36512
-9792
lines changed

.github/workflows/assign-pr-number.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
ref: ${{ github.head_ref }}
1818
fetch-depth: 2

.github/workflows/backport.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
labels: ${{ steps.commit.outputs.labels }}
5353
steps:
5454
- name: Checkout the revision
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
lfs: false
5858
ref: ${{ matrix.commits }}
@@ -103,7 +103,7 @@ jobs:
103103
done
104104
echo "Milestones with the corresponding release branch: ${milestones[@]}"
105105
106-
sort_milestones=($(printf "%s\n" "${milestones[@]}" | sort -r))
106+
sort_milestones=($(printf "%s\n" "${milestones[@]}" | sort -V -r))
107107
for i in "${!sort_milestones[@]}"; do
108108
if [[ "${sort_milestones[$i]}" == "$target_milestone" ]]; then
109109
target_milestones=("${sort_milestones[@]:0:$((i+1))}")
@@ -128,7 +128,7 @@ jobs:
128128
permissions:
129129
pull-requests: write
130130
steps:
131-
- uses: actions/checkout@v4
131+
- uses: actions/checkout@v5
132132
with:
133133
ref: ${{ matrix.target_branch }}
134134
- name: Cherry-pick

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- name: Check out the revision
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: Fetch remote tags
2626
run: git fetch origin 'refs/tags/*:refs/tags/*' -f
2727
- name: Git LFS Pull
@@ -60,12 +60,12 @@ jobs:
6060
sort -u dist/checksum.txt -o dist/checksum.txt
6161
rm dist/*.sha256
6262
- name: Upload scies
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: scies-${{ matrix.os }}
6666
path: dist/*
6767
- name: Upload pants log
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: pants-${{ matrix.os }}.build-scies.log
7171
path: .pants.d/workdir/pants.log

.github/workflows/check-requirement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout the revision
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212
with:
1313
lfs: false
1414
- name: Check if a precompiled binary file exists in dependencies

.github/workflows/ci.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
100100
fi
101101
- name: Check out the revision with minimal required history
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@v5
103103
with:
104104
fetch-depth: ${{ env.GIT_FETCH_DEPTH }}
105105
lfs: false
@@ -149,7 +149,7 @@ jobs:
149149
fi
150150
pants lint --changed-since=$BASE_REF --changed-dependents=transitive
151151
- name: Upload pants log
152-
uses: actions/upload-artifact@v4
152+
uses: actions/upload-artifact@v5
153153
with:
154154
name: pants.lint.log
155155
path: .pants.d/workdir/pants.log
@@ -167,7 +167,7 @@ jobs:
167167
runs-on: ubuntu-latest
168168
steps:
169169
- name: Check out the revision
170-
uses: actions/checkout@v4
170+
uses: actions/checkout@v5
171171
with:
172172
lfs: false
173173
- name: Parse versions from config
@@ -227,7 +227,7 @@ jobs:
227227
echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
228228
fi
229229
- name: Check out the revision with minimal required history
230-
uses: actions/checkout@v4
230+
uses: actions/checkout@v5
231231
with:
232232
fetch-depth: ${{ env.GIT_FETCH_DEPTH }}
233233
lfs: false
@@ -273,7 +273,7 @@ jobs:
273273
fi
274274
pants check --changed-since=$BASE_REF --changed-dependents=transitive
275275
- name: Upload pants log
276-
uses: actions/upload-artifact@v4
276+
uses: actions/upload-artifact@v5
277277
with:
278278
name: pants.check.log
279279
path: .pants.d/workdir/pants.log
@@ -294,7 +294,7 @@ jobs:
294294
echo "GIT_FETCH_DEPTH=2" >> "${GITHUB_ENV}"
295295
fi
296296
- name: Check out the revision with minimal required history
297-
uses: actions/checkout@v4
297+
uses: actions/checkout@v5
298298
with:
299299
fetch-depth: ${{ env.GIT_FETCH_DEPTH }}
300300
lfs: false
@@ -340,7 +340,7 @@ jobs:
340340
fi
341341
pants test --changed-since=$BASE_REF --changed-dependents=transitive -- -v
342342
- name: Upload pants log
343-
uses: actions/upload-artifact@v4
343+
uses: actions/upload-artifact@v5
344344
with:
345345
name: pants.test.log
346346
path: .pants.d/workdir/pants.log
@@ -363,7 +363,7 @@ jobs:
363363
SCIENCE_AUTH_API_GITHUB_COM_BEARER: ${{ secrets.GITHUB_TOKEN }}
364364
steps:
365365
- name: Check out the revision
366-
uses: actions/checkout@v4
366+
uses: actions/checkout@v5
367367
- name: Fetch remote tags
368368
run: git fetch origin 'refs/tags/*:refs/tags/*' -f
369369
- name: Git LFS Pull
@@ -402,12 +402,12 @@ jobs:
402402
mv dist/checksum.txt dist/checksum-${platform_suffix}.txt
403403
rm dist/*.sha256
404404
- name: Upload scies
405-
uses: actions/upload-artifact@v4
405+
uses: actions/upload-artifact@v5
406406
with:
407407
name: scies-${{ matrix.os }}
408408
path: dist/*
409409
- name: Upload pants log
410-
uses: actions/upload-artifact@v4
410+
uses: actions/upload-artifact@v5
411411
with:
412412
name: pants-${{ matrix.os }}.build-scies.log
413413
path: .pants.d/workdir/pants.log
@@ -420,7 +420,7 @@ jobs:
420420
runs-on: ubuntu-22.04
421421
steps:
422422
- name: Check out the revision
423-
uses: actions/checkout@v4
423+
uses: actions/checkout@v5
424424
- name: Fetch remote tags
425425
run: git fetch origin 'refs/tags/*:refs/tags/*' -f
426426
- name: Git LFS Pull
@@ -448,12 +448,12 @@ jobs:
448448
run: |
449449
./scripts/build-wheels.sh
450450
- name: Upload wheels
451-
uses: actions/upload-artifact@v4
451+
uses: actions/upload-artifact@v5
452452
with:
453453
name: wheels
454454
path: dist/*
455455
- name: Upload pants log
456-
uses: actions/upload-artifact@v4
456+
uses: actions/upload-artifact@v5
457457
with:
458458
name: pants.build-wheels.log
459459
path: .pants.d/workdir/pants.log
@@ -488,7 +488,7 @@ jobs:
488488
contents: write
489489
environment: deploy-to-pypi
490490
steps:
491-
- uses: actions/checkout@v4
491+
- uses: actions/checkout@v5
492492
- name: Fetch remote tags
493493
run: git fetch origin 'refs/tags/*:refs/tags/*' -f
494494
- name: Extract Python version from pants.toml
@@ -507,12 +507,12 @@ jobs:
507507
python ./scripts/extract-release-changelog.py
508508
python ./scripts/determine-release-type.py
509509
- name: Download wheels
510-
uses: actions/download-artifact@v5
510+
uses: actions/download-artifact@v6
511511
with:
512512
name: wheels
513513
path: dist
514514
- name: Download scies
515-
uses: actions/download-artifact@v5
515+
uses: actions/download-artifact@v6
516516
with:
517517
pattern: scies-*
518518
path: dist
@@ -522,7 +522,7 @@ jobs:
522522
cat dist/checksum-*.txt > dist/checksum.txt
523523
sort -u -k2 dist/checksum.txt -o dist/checksum.txt
524524
- name: Download SBOM report
525-
uses: actions/download-artifact@v5
525+
uses: actions/download-artifact@v6
526526
with:
527527
name: SBOM report
528528
path: dist
@@ -632,7 +632,7 @@ jobs:
632632

633633
steps:
634634
- name: Check out the revision
635-
uses: actions/checkout@v4
635+
uses: actions/checkout@v5
636636
- name: Git LFS Pull
637637
run: git lfs pull
638638
- name: Extract Python version from pants.toml
@@ -659,7 +659,7 @@ jobs:
659659
with:
660660
activate-conda: false
661661
- name: Download wheels
662-
uses: actions/download-artifact@v5
662+
uses: actions/download-artifact@v6
663663
with:
664664
name: wheels
665665
path: dist

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: [ubuntu-latest-8-cores]
1616
steps:
1717
- name: Checkout the revision
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 2
2121
- name: Extract Python version from pants.toml
@@ -47,7 +47,7 @@ jobs:
4747
token: ${{ secrets.CODECOV_TOKEN }}
4848
verbose: true
4949
- name: Upload pants log
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: pants.coverage.log
5353
path: .pants.d/workdir/pants.log

.github/workflows/devskim.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
security-events: write
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Run DevSkim scanner
2929
uses: microsoft/DevSkim-Action@v1

.github/workflows/import-all-smi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Get release tag
2424
id: get-tag

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout the revision
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 2
1818
- name: Create LFS file hash list
@@ -49,7 +49,7 @@ jobs:
4949
./backend.ai test run-cli admin
5050
./backend.ai test run-cli user
5151
- name: Upload pants log
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: pants.test.log
5555
path: .pants.d/workdir/pants.log

.github/workflows/sbom.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout the revision
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with:
1212
lfs: false
1313
- name: Generate the SBOM report
1414
uses: CycloneDX/gh-python-generate-sbom@v2
1515
- name: Upload the SBOM report
16-
uses: actions/upload-artifact@v4
16+
uses: actions/upload-artifact@v5
1717
with:
1818
name: SBOM report
1919
path: ./bom.xml

0 commit comments

Comments
 (0)