Skip to content

Commit 9cc3ad5

Browse files
authored
bump: update utilities to v0.13.1 (#2989)
* bump: update `utilities` to 0.13.1 * azure-schema-version: "v1.208.0" * actions-ref
1 parent 22bc2ea commit 9cc3ad5

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/workflows/ci-checks.yml

+9-6
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,22 @@ concurrency:
1313

1414
jobs:
1515
check-code:
16-
uses: Lightning-AI/utilities/.github/workflows/check-typing.yml@v0.12.0
16+
uses: Lightning-AI/utilities/.github/workflows/check-typing.yml@v0.13.1
1717
with:
18-
actions-ref: v0.12.0
18+
actions-ref: v0.13.1
1919
extra-typing: "typing"
2020

2121
check-schema:
22-
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.12.0
22+
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.13.1
23+
with:
24+
actions-ref: v0.13.1
25+
azure-schema-version: "v1.208.0"
2326

2427
check-package:
2528
if: github.event.pull_request.draft == false
26-
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.12.0
29+
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.13.1
2730
with:
28-
actions-ref: v0.12.0
31+
actions-ref: v0.13.1
2932
artifact-name: dist-packages-${{ github.sha }}
3033
import-name: "torchmetrics"
3134
testing-matrix: |
@@ -35,7 +38,7 @@ jobs:
3538
}
3639
3740
check-md-links:
38-
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.12.0
41+
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.13.1
3942
with:
4043
base-branch: master
4144
config-file: ".github/markdown-links-config.json"

.github/workflows/clear-cache.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ on:
2323
jobs:
2424
cron-clear:
2525
if: github.event_name == 'schedule' || github.event_name == 'pull_request'
26-
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
26+
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.13.1
2727
with:
28-
scripts-ref: v0.12.0
28+
scripts-ref: v0.13.1
2929
dry-run: ${{ github.event_name == 'pull_request' }}
3030
pattern: "pip-latest"
3131
age-days: 7
3232

3333
direct-clear:
3434
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
35-
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.12.0
35+
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.13.1
3636
with:
37-
scripts-ref: v0.12.0
37+
scripts-ref: v0.13.1
3838
dry-run: ${{ github.event_name == 'pull_request' }}
3939
pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging
4040
age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging

0 commit comments

Comments
 (0)