Skip to content

Commit 985449a

Browse files
authored
chore: update actions (#10542)
1 parent bc536be commit 985449a

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

.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@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
26+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.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@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
29+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3030
id: cache
3131
if: inputs.cache == 'true'
3232
with:

.github/workflows/.tests-matrix.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ${{ inputs.runner }}
3232
if: inputs.run-mypy
3333
steps:
34-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535
with:
3636
persist-credentials: false
3737

@@ -42,7 +42,7 @@ jobs:
4242

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

45-
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
45+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4646
with:
4747
path: .mypy_cache
4848
key: mypy-${{ runner.os }}-py${{ steps.bootstrap-poetry.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'poetry.lock') }}
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ${{ inputs.runner }}
5858
if: inputs.run-pytest
5959
steps:
60-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
60+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6161
with:
6262
persist-credentials: false
6363

@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ${{ inputs.runner }}
8282
if: inputs.run-pytest-export
8383
steps:
84-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
84+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8585
with:
8686
persist-credentials: false
8787
path: poetry
@@ -98,7 +98,7 @@ jobs:
9898
id: poetry-plugin-export-version
9999

100100
- name: Check out poetry-plugin-export
101-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
101+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
102102
with:
103103
persist-credentials: false
104104
path: poetry-plugin-export

.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@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
27+
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
2828
id: app-token
2929
with:
3030
app-id: ${{ secrets.POETRY_TOKEN_APP_ID }}

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,29 @@ jobs:
2525
contents: read
2626
pull-requests: write
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
persist-credentials: false
3131
repository: python-poetry/website
3232

3333
# use .github from pull request target instead of pull_request.head
3434
# for pull_request_target trigger to avoid arbitrary code execution
35-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636
with:
3737
persist-credentials: false
3838
path: poetry-github
3939
sparse-checkout: .github
4040

4141
# only checkout docs from pull_request.head to not use something else by accident
4242
# for pull_request_target trigger (security)
43-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4444
with:
4545
persist-credentials: false
4646
path: poetry-docs
4747
ref: ${{ github.event.pull_request.head.sha }}
4848
sparse-checkout: docs
4949

50-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
50+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
5151
with:
5252
node-version: "18"
5353

@@ -66,7 +66,7 @@ jobs:
6666
# Build the static website.
6767
npx hugo --minify --logLevel info
6868
69-
- uses: amondnet/vercel-action@16e87c0a08142b0d0d33b76aeaf20823c381b9b9 # v25.2.0
69+
- uses: amondnet/vercel-action@888da851026e0573da056b061931bcb765a915c4 # v41.1.4
7070
with:
7171
vercel-version: 39.2.2
7272
vercel-token: ${{ secrets.VERCEL_TOKEN }}

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1515
with:
1616
persist-credentials: false
1717

@@ -31,11 +31,11 @@ jobs:
3131
needs: build
3232
steps:
3333
# We need to be in a git repo for gh to work.
34-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3535
with:
3636
persist-credentials: false
3737

38-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
38+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
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@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
58+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
5959
with:
6060
name: distfiles
6161
path: dist/
6262

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

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
src: ${{ steps.changes.outputs.src }}
2626
tests: ${{ steps.changes.outputs.tests }}
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929
with:
3030
persist-credentials: false
3131

@@ -58,7 +58,7 @@ jobs:
5858
if: needs.changes.outputs.project == 'true'
5959
needs: changes
6060
steps:
61-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
61+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6262
with:
6363
persist-credentials: false
6464

@@ -72,7 +72,7 @@ jobs:
7272
if: needs.changes.outputs.project == 'true'
7373
needs: lockfile
7474
steps:
75-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
75+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7676
with:
7777
persist-credentials: false
7878

@@ -93,7 +93,7 @@ jobs:
9393
if: needs.changes.outputs.fixtures-pypi == 'true'
9494
needs: changes
9595
steps:
96-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
96+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9797
with:
9898
persist-credentials: false
9999

0 commit comments

Comments
 (0)