Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9dd5bf8

Browse files
authored
Merge branch 'master' into deploy-manually
2 parents fb81442 + 7f3e0fe commit 9dd5bf8

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/preview-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
rm -rf ./site
1717
mkdir ./site
1818
- name: Download Artifact Docs
19-
uses: dawidd6/action-download-artifact@v2.26.0
19+
uses: dawidd6/action-download-artifact@v2.27.0
2020
with:
2121
github_token: ${{ secrets.GITHUB_TOKEN }}
2222
workflow: build-docs.yml

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
uses: actions/setup-python@v4
1919
with:
2020
python-version: "3.7"
21-
cache: "pip"
21+
# Issue ref: https://github.com/actions/setup-python/issues/436
22+
# cache: "pip"
2223
cache-dependency-path: pyproject.toml
2324
- uses: actions/cache@v3
2425
id: cache
@@ -31,7 +32,7 @@ jobs:
3132
- name: Build distribution
3233
run: python -m build
3334
- name: Publish
34-
uses: pypa/gh-action-pypi-publish@v1.6.4
35+
uses: pypa/gh-action-pypi-publish@v1.8.5
3536
with:
3637
password: ${{ secrets.PYPI_API_TOKEN }}
3738
- name: Dump GitHub context

.github/workflows/smokeshow.yml

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

2121
- run: pip install smokeshow
2222

23-
- uses: dawidd6/action-download-artifact@v2.26.0
23+
- uses: dawidd6/action-download-artifact@v2.27.0
2424
with:
2525
workflow: test.yml
2626
commit: ${{ github.event.workflow_run.head_sha }}

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
24-
cache: "pip"
24+
# Issue ref: https://github.com/actions/setup-python/issues/436
25+
# cache: "pip"
2526
cache-dependency-path: pyproject.toml
2627
- uses: actions/cache@v3
2728
id: cache
@@ -54,7 +55,8 @@ jobs:
5455
- uses: actions/setup-python@v4
5556
with:
5657
python-version: '3.8'
57-
cache: "pip"
58+
# Issue ref: https://github.com/actions/setup-python/issues/436
59+
# cache: "pip"
5860
cache-dependency-path: pyproject.toml
5961

6062
- name: Get coverage files

docs/en/docs/release-notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Latest Changes
44

5+
* ⬆ Bump dawidd6/action-download-artifact from 2.26.0 to 2.27.0. PR [#9394](https://github.com/tiangolo/fastapi/pull/9394) by [@dependabot[bot]](https://github.com/apps/dependabot).
6+
* 💚 Disable setup-python pip cache in CI. PR [#9438](https://github.com/tiangolo/fastapi/pull/9438) by [@tiangolo](https://github.com/tiangolo).
7+
* ⬆ Bump pypa/gh-action-pypi-publish from 1.6.4 to 1.8.5. PR [#9346](https://github.com/tiangolo/fastapi/pull/9346) by [@dependabot[bot]](https://github.com/apps/dependabot).
58

69
## 0.95.1
710

0 commit comments

Comments
 (0)