Skip to content

Commit 4648ea2

Browse files
authored
Merge branch 'master' into feature/trainer-compile-fn
2 parents 2ead3ab + 5be58f6 commit 4648ea2

File tree

28 files changed

+88
-60
lines changed

28 files changed

+88
-60
lines changed

.github/workflows/_build-packages.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
name: ${{ inputs.artifact-name }}
3434
path: dist
3535
retention-days: ${{ steps.keep-artifact.outputs.DAYS }}
36+
include-hidden-files: true
3637

3738
build-packages:
3839
needs: init
@@ -66,3 +67,4 @@ jobs:
6667
with:
6768
name: ${{ inputs.artifact-name }}
6869
path: pypi
70+
include-hidden-files: true

.github/workflows/_legacy-checkpoints.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ jobs:
109109
name: checkpoints-${{ github.sha }}
110110
path: ${{ env.LEGACY_FOLDER }}/checkpoints/
111111
retention-days: ${{ env.KEEP_DAYS }}
112+
include-hidden-files: true
112113

113114
- run: pip install -r requirements/ci.txt
114115
- name: Upload checkpoints to S3
@@ -138,7 +139,7 @@ jobs:
138139
run: echo ${PL_VERSION} >> back-compatible-versions.txt
139140

140141
- name: Create Pull Request
141-
uses: peter-evans/create-pull-request@v6
142+
uses: peter-evans/create-pull-request@v7
142143
with:
143144
title: Adding test for legacy checkpoint created with ${{ env.PL_VERSION }}
144145
committer: GitHub <[email protected]>

.github/workflows/call-clear-cache.yml

Lines changed: 4 additions & 4 deletions
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/[email protected].6
26+
uses: Lightning-AI/utilities/.github/workflows/[email protected].7
2727
with:
28-
scripts-ref: v0.11.6
28+
scripts-ref: v0.11.7
2929
dry-run: ${{ github.event_name == 'pull_request' }}
3030
pattern: "latest|docs"
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/[email protected].6
35+
uses: Lightning-AI/utilities/.github/workflows/[email protected].7
3636
with:
37-
scripts-ref: v0.11.6
37+
scripts-ref: v0.11.7
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

.github/workflows/ci-check-md-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
check-md-links:
17-
uses: Lightning-AI/utilities/.github/workflows/[email protected].6
17+
uses: Lightning-AI/utilities/.github/workflows/[email protected].7
1818
with:
1919
config-file: ".github/markdown-links-config.json"
2020
base-branch: "master"

.github/workflows/ci-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
check:
11-
uses: Lightning-AI/utilities/.github/workflows/[email protected].6
11+
uses: Lightning-AI/utilities/.github/workflows/[email protected].7
1212
with:
1313
# skip azure due to the wrong schema file by MSFT
1414
# https://github.com/Lightning-AI/lightning-flash/pull/1455#issuecomment-1244793607

.github/workflows/docs-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
name: docs-${{ matrix.pkg-name }}-${{ github.sha }}
135135
path: docs/build/html/
136136
retention-days: ${{ env.ARTIFACT_DAYS }}
137+
include-hidden-files: true
137138

138139
#- name: Dump handy wheels
139140
# if: github.event_name == 'push' && github.ref == 'refs/heads/master'

.github/workflows/docs-tutorials.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Create Pull Request
5050
if: ${{ github.event_name != 'pull_request' && env.SHA_ACTUAL != env.SHA_LATEST }}
51-
uses: peter-evans/create-pull-request@v6
51+
uses: peter-evans/create-pull-request@v7
5252
with:
5353
title: "docs: update ref to latest tutorials"
5454
committer: GitHub <[email protected]>

.github/workflows/release-nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
with:
4545
name: nightly-packages-${{ github.sha }}
4646
path: dist
47+
include-hidden-files: true
4748

4849
publish-packages:
4950
runs-on: ubuntu-22.04

.github/workflows/release-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Create Pull Request
106106
if: github.event_name != 'pull_request'
107-
uses: peter-evans/create-pull-request@v6
107+
uses: peter-evans/create-pull-request@v7
108108
with:
109109
title: "Bump lightning ver `${{ env.TAG }}`"
110110
committer: GitHub <[email protected]>

_notebooks

0 commit comments

Comments
 (0)