Skip to content

Commit 62c874d

Browse files
committed
bump: update utilities to v0.13.0
1 parent 22bc2ea commit 62c874d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci-checks.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ 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.0
1717
with:
18-
actions-ref: v0.12.0
18+
actions-ref: v0.13.0
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.0
2323

2424
check-package:
2525
if: github.event.pull_request.draft == false
26-
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.12.0
26+
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.13.0
2727
with:
28-
actions-ref: v0.12.0
28+
actions-ref: v0.13.0
2929
artifact-name: dist-packages-${{ github.sha }}
3030
import-name: "torchmetrics"
3131
testing-matrix: |
@@ -35,7 +35,7 @@ jobs:
3535
}
3636
3737
check-md-links:
38-
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.12.0
38+
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.13.0
3939
with:
4040
base-branch: master
4141
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.0
2727
with:
28-
scripts-ref: v0.12.0
28+
scripts-ref: v0.13.0
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.0
3636
with:
37-
scripts-ref: v0.12.0
37+
scripts-ref: v0.13.0
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)