Skip to content

Commit

Permalink
bump/ci: utilities to 0.11.7 (#2712)
Browse files Browse the repository at this point in the history
(cherry picked from commit c8ebda5)
  • Loading branch information
Borda committed Sep 13, 2024
1 parent 58bf139 commit 36f1177
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ concurrency:

jobs:
check-code:
uses: Lightning-AI/utilities/.github/workflows/check-typing.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/check-typing.yml@v0.11.7
with:
actions-ref: v0.11.6
actions-ref: v0.11.7
extra-typing: "typing"

check-schema:
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/check-schema.yml@v0.11.7

check-package:
if: github.event.pull_request.draft == false
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/check-package.yml@v0.11.7
with:
actions-ref: v0.11.6
actions-ref: v0.11.7
artifact-name: dist-packages-${{ github.sha }}
import-name: "torchmetrics"
testing-matrix: |
Expand All @@ -35,7 +35,7 @@ jobs:
}
check-md-links:
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.11.7
with:
base-branch: master
config-file: ".github/markdown-links-config.json"
8 changes: 4 additions & 4 deletions .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ on:
jobs:
cron-clear:
if: github.event_name == 'schedule' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.7
with:
scripts-ref: v0.11.6
scripts-ref: v0.11.7
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: "pip-latest"
age-days: 7

direct-clear:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request'
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.6
uses: Lightning-AI/utilities/.github/workflows/cleanup-caches.yml@v0.11.7
with:
scripts-ref: v0.11.6
scripts-ref: v0.11.7
dry-run: ${{ github.event_name == 'pull_request' }}
pattern: ${{ inputs.pattern || 'pypi_wheels' }} # setting str in case of PR / debugging
age-days: ${{ fromJSON(inputs.age-days) || 0 }} # setting 0 in case of PR / debugging

0 comments on commit 36f1177

Please sign in to comment.