Skip to content

Commit 1ab7e4e

Browse files
authored
chore: update actions and vercel-version (#10851)
Fix "Error: Your Vercel CLI version is outdated. This endpoint requires version 47.2.2 or later."
1 parent af2326b commit 1ab7e4e

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/actions/bootstrap-poetry/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ outputs:
2323
runs:
2424
using: composite
2525
steps:
26-
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
26+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2727
id: setup-python
2828
if: inputs.python-version != 'default'
2929
with:

.github/actions/poetry-install/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626
if: inputs.cache == 'true'
2727
shell: bash
2828

29-
- uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
29+
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3030
id: cache
3131
if: inputs.cache == 'true'
3232
with:

.github/workflows/.tests-matrix.yaml

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

4343
- uses: ./.github/actions/poetry-install
4444

45-
- uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2
45+
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4646
with:
4747
path: .mypy_cache
4848
key: mypy-${{ runner.os }}-py${{ steps.bootstrap-poetry.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'poetry.lock') }}

.github/workflows/backport.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
)
2525
)
2626
steps:
27-
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
27+
- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
2828
id: app-token
2929
with:
3030
app-id: ${{ secrets.POETRY_TOKEN_APP_ID }}

.github/workflows/docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
ref: ${{ github.event.pull_request.head.sha }}
4848
sparse-checkout: docs
4949

50-
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
50+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
5151
with:
5252
node-version: "18"
5353

@@ -66,9 +66,9 @@ jobs:
6666
# Build the static website.
6767
npx hugo --minify --logLevel info
6868
69-
- uses: amondnet/vercel-action@888da851026e0573da056b061931bcb765a915c4 # v41.1.4
69+
- uses: amondnet/vercel-action@c71810f8732de6b8656e41155e63b6303ca3e4bf # v42.1.0
7070
with:
71-
vercel-version: 41.1.4
71+
vercel-version: 48.12.1
7272
vercel-token: ${{ secrets.VERCEL_TOKEN }}
7373
github-token: ${{ secrets.GITHUB_TOKEN }}
7474
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- run: pipx run build
1919

20-
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
20+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
2121
with:
2222
name: distfiles
2323
path: dist/
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
persist-credentials: false
3737

38-
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
38+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
3939
with:
4040
name: distfiles
4141
path: dist/
@@ -55,11 +55,11 @@ jobs:
5555
id-token: write
5656
needs: build
5757
steps:
58-
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
58+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
5959
with:
6060
name: distfiles
6161
path: dist/
6262

63-
- uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
63+
- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
6464
with:
6565
print-hash: true

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
persist-credentials: false
3131

32-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
32+
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
3333
id: changes
3434
with:
3535
filters: |

0 commit comments

Comments
 (0)