File tree Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Expand file tree Collapse file tree 6 files changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ outputs:
23
23
runs :
24
24
using : composite
25
25
steps :
26
- - uses : actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
26
+ - uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
27
27
id : setup-python
28
28
if : inputs.python-version != 'default'
29
29
with :
Original file line number Diff line number Diff line change 26
26
if : inputs.cache == 'true'
27
27
shell : bash
28
28
29
- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
29
+ - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
30
30
id : cache
31
31
if : inputs.cache == 'true'
32
32
with :
Original file line number Diff line number Diff line change 31
31
runs-on : ${{ inputs.runner }}
32
32
if : inputs.run-mypy
33
33
steps :
34
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
34
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35
35
with :
36
36
persist-credentials : false
37
37
42
42
43
43
- uses : ./.github/actions/poetry-install
44
44
45
- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
45
+ - uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
46
46
with :
47
47
path : .mypy_cache
48
48
key : mypy-${{ runner.os }}-py${{ steps.bootstrap-poetry.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'poetry.lock') }}
57
57
runs-on : ${{ inputs.runner }}
58
58
if : inputs.run-pytest
59
59
steps :
60
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
60
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
61
61
with :
62
62
persist-credentials : false
63
63
81
81
runs-on : ${{ inputs.runner }}
82
82
if : inputs.run-pytest-export
83
83
steps :
84
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
84
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
85
85
with :
86
86
persist-credentials : false
87
87
path : poetry
98
98
id : poetry-plugin-export-version
99
99
100
100
- name : Check out poetry-plugin-export
101
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
101
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
102
102
with :
103
103
persist-credentials : false
104
104
path : poetry-plugin-export
Original file line number Diff line number Diff line change @@ -25,29 +25,29 @@ jobs:
25
25
contents : read
26
26
pull-requests : write
27
27
steps :
28
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
28
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29
29
with :
30
30
persist-credentials : false
31
31
repository : python-poetry/website
32
32
33
33
# use .github from pull request target instead of pull_request.head
34
34
# for pull_request_target trigger to avoid arbitrary code execution
35
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
35
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
36
36
with :
37
37
persist-credentials : false
38
38
path : poetry-github
39
39
sparse-checkout : .github
40
40
41
41
# only checkout docs from pull_request.head to not use something else by accident
42
42
# for pull_request_target trigger (security)
43
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
43
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44
44
with :
45
45
persist-credentials : false
46
46
path : poetry-docs
47
47
ref : ${{ github.event.pull_request.head.sha }}
48
48
sparse-checkout : docs
49
49
50
- - uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
50
+ - uses : actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
51
51
with :
52
52
node-version : " 18"
53
53
Original file line number Diff line number Diff line change 9
9
name : Build
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
12
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13
13
with :
14
14
persist-credentials : false
15
15
16
16
- run : pipx run build
17
17
18
- - uses : actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
18
+ - uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
19
19
with :
20
20
name : distfiles
21
21
path : dist/
@@ -29,11 +29,11 @@ jobs:
29
29
needs : build
30
30
steps :
31
31
# We need to be in a git repo for gh to work.
32
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
32
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33
33
with :
34
34
persist-credentials : false
35
35
36
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
36
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
37
37
with :
38
38
name : distfiles
39
39
path : dist/
@@ -53,11 +53,11 @@ jobs:
53
53
id-token : write
54
54
needs : build
55
55
steps :
56
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
56
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
57
57
with :
58
58
name : distfiles
59
59
path : dist/
60
60
61
- - uses : pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 # v1.8.14
61
+ - uses : pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
62
62
with :
63
63
print-hash : true
Original file line number Diff line number Diff line change 23
23
src : ${{ steps.changes.outputs.src }}
24
24
tests : ${{ steps.changes.outputs.tests }}
25
25
steps :
26
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
26
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27
27
with :
28
28
persist-credentials : false
29
29
56
56
if : needs.changes.outputs.project == 'true'
57
57
needs : changes
58
58
steps :
59
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
59
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
60
60
with :
61
61
persist-credentials : false
62
62
70
70
if : needs.changes.outputs.project == 'true'
71
71
needs : lockfile
72
72
steps :
73
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
73
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
74
74
with :
75
75
persist-credentials : false
76
76
91
91
if : needs.changes.outputs.fixtures-pypi == 'true'
92
92
needs : changes
93
93
steps :
94
- - uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
94
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
95
95
with :
96
96
persist-credentials : false
97
97
You can’t perform that action at this time.
0 commit comments