12
12
python-version : ["3.11"]
13
13
14
14
steps :
15
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
15
+ - uses : actions/checkout@v4
16
16
- name : Set up Python ${{ matrix.python-version }}
17
- uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
17
+ uses : actions/setup-python@v5
18
18
with :
19
19
python-version : ${{ matrix.python-version }}
20
20
- name : Install dependencies
55
55
PACKAGE_NAME : bytecorecompiler
56
56
57
57
steps :
58
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
58
+ - uses : actions/checkout@v4
59
59
- name : Setup Python
60
- uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
60
+ uses : actions/setup-python@v5
61
61
with :
62
62
python-version : ${{ matrix.python-version }}
63
63
- name : Install dependencies
70
70
python -c "import ${{ env.PACKAGE_NAME }}; print(${{ env.PACKAGE_NAME }})"
71
71
shell : bash
72
72
- name : Upload distribution archives
73
- uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
73
+ uses : actions/upload-artifact@v4
74
74
with :
75
75
name : distribution-archives-${{ matrix.os }}-${{ matrix.python-version }}
76
76
path : dist
@@ -82,15 +82,15 @@ jobs:
82
82
83
83
steps :
84
84
- name : Download All Artifacts
85
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
85
+ uses : actions/download-artifact@v4
86
86
with :
87
87
path : distribution-archives
88
88
pattern : distribution-archives-*
89
89
merge-multiple : true
90
90
- name : List distribution archives
91
91
run : ls --recursive distribution-archives
92
92
- name : Upload combined distribution archives
93
- uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
93
+ uses : actions/upload-artifact@v4
94
94
with :
95
95
name : combined-distribution-archives
96
96
path : distribution-archives
@@ -110,9 +110,9 @@ jobs:
110
110
PACKAGE_NAME : bytecorecompiler
111
111
112
112
steps :
113
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
113
+ - uses : actions/checkout@v4
114
114
- name : Download combined distribution archives
115
- uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
115
+ uses : actions/download-artifact@v4
116
116
with :
117
117
name : combined-distribution-archives
118
118
path : dist
0 commit comments