@@ -18,10 +18,10 @@ jobs:
18
18
ansible : [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
19
19
steps :
20
20
- name : Check out code
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
23
23
- name : Set up Python ${{ env.python_version }}
24
- uses : actions/setup-python@v4
24
+ uses : actions/setup-python@v5
25
25
with :
26
26
python-version : ${{ env.python_version }}
27
27
32
32
run : ansible-galaxy collection build --output-path "${GITHUB_WORKSPACE}/.cache/collection-tarballs"
33
33
34
34
- name : Store migrated collection artifacts
35
- uses : actions/upload-artifact@v3
35
+ uses : actions/upload-artifact@v4
36
36
with :
37
- name : collection
37
+ name : collection-${{ matrix.ansible }}
38
38
path : .cache/collection-tarballs
39
39
40
40
black-formating :
47
47
experimental : [true]
48
48
steps :
49
49
- name : Check out code
50
- uses : actions/checkout@v3
50
+ uses : actions/checkout@v4
51
51
52
52
- name : Run black against code
53
53
uses : psf/black@stable
@@ -61,17 +61,17 @@ jobs:
61
61
runs-on : ubuntu-latest
62
62
steps :
63
63
- name : Set up Python ${{ env.python_version }}
64
- uses : actions/setup-python@v4
64
+ uses : actions/setup-python@v5
65
65
with :
66
66
python-version : ${{ env.python_version }}
67
67
68
68
- name : Install ansible-base (v2.15.8)
69
69
run : pip install https://github.com/ansible/ansible/archive/v2.15.8.tar.gz --disable-pip-version-check
70
70
71
71
- name : Download migrated collection artifacts
72
- uses : actions/download-artifact@v3
72
+ uses : actions/download-artifact@v4
73
73
with :
74
- name : collection
74
+ name : collection-stable-2.16
75
75
path : .cache/collection-tarballs
76
76
77
77
- name : Install the collection tarball
99
99
run : if grep -E 'WARNING|ERROR' .cache/collection-tarballs/log.txt; then exit 1; else exit 0; fi
100
100
101
101
- name : Store galaxy_importer check log file
102
- uses : actions/upload-artifact@v3
102
+ uses : actions/upload-artifact@v4
103
103
with :
104
104
name : galaxy-importer-log
105
105
path : .cache/collection-tarballs/importer_result.json
@@ -116,7 +116,7 @@ jobs:
116
116
ansible : [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
117
117
steps :
118
118
- name : Set up Python ${{ env.python_version }}
119
- uses : actions/setup-python@v4
119
+ uses : actions/setup-python@v5
120
120
with :
121
121
python-version : ${{ env.python_version }}
122
122
@@ -127,9 +127,9 @@ jobs:
127
127
run : pip install coverage==4.5.4
128
128
129
129
- name : Download migrated collection artifacts
130
- uses : actions/download-artifact@v3
130
+ uses : actions/download-artifact@v4
131
131
with :
132
- name : collection
132
+ name : collection-${{ matrix.ansible }}
133
133
path : .cache/collection-tarballs
134
134
135
135
- name : Install the collection tarball
@@ -159,7 +159,7 @@ jobs:
159
159
python-version : ['3.10']
160
160
steps :
161
161
- name : Set up Python ${{ matrix.python-version }}
162
- uses : actions/setup-python@v4
162
+ uses : actions/setup-python@v5
163
163
with :
164
164
python-version : ${{ matrix.python-version }}
165
165
@@ -170,9 +170,9 @@ jobs:
170
170
run : pip install coverage==4.5.4
171
171
172
172
- name : Download migrated collection artifacts
173
- uses : actions/download-artifact@v3
173
+ uses : actions/download-artifact@v4
174
174
with :
175
- name : collection
175
+ name : collection-${{ matrix.ansible }}
176
176
path : .cache/collection-tarballs
177
177
178
178
- name : Install the collection tarball
@@ -199,7 +199,7 @@ jobs:
199
199
MUTEX_URL : https://8v7s765ibh.execute-api.us-west-1.amazonaws.com
200
200
steps :
201
201
- name : Set up Python ${{ env.python_version }}
202
- uses : actions/setup-python@v4
202
+ uses : actions/setup-python@v5
203
203
with :
204
204
python-version : ${{ env.python_version }}
205
205
@@ -210,9 +210,9 @@ jobs:
210
210
run : pip install coverage==4.5.4
211
211
212
212
- name : Download migrated collection artifacts
213
- uses : actions/download-artifact@v3
213
+ uses : actions/download-artifact@v4
214
214
with :
215
- name : collection
215
+ name : collection-stable-2.16
216
216
path : .cache/collection-tarballs
217
217
218
218
- name : Install the collection tarball
0 commit comments