Skip to content

Commit bf0fb0d

Browse files
samiiblhercot
authored andcommitted
[ignore] Update action versions to latest using node 20
1 parent 3d06205 commit bf0fb0d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/ansible-test.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
ansible: [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Set up Python ${{ env.python_version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ env.python_version }}
2727

@@ -32,9 +32,9 @@ jobs:
3232
run: ansible-galaxy collection build --output-path "${GITHUB_WORKSPACE}/.cache/collection-tarballs"
3333

3434
- name: Store migrated collection artifacts
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
37-
name: collection
37+
name: collection-${{ matrix.ansible }}
3838
path: .cache/collection-tarballs
3939

4040
black-formating:
@@ -47,7 +47,7 @@ jobs:
4747
experimental: [true]
4848
steps:
4949
- name: Check out code
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151

5252
- name: Run black against code
5353
uses: psf/black@stable
@@ -61,17 +61,17 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- name: Set up Python ${{ env.python_version }}
64-
uses: actions/setup-python@v4
64+
uses: actions/setup-python@v5
6565
with:
6666
python-version: ${{ env.python_version }}
6767

6868
- name: Install ansible-base (v2.15.8)
6969
run: pip install https://github.com/ansible/ansible/archive/v2.15.8.tar.gz --disable-pip-version-check
7070

7171
- name: Download migrated collection artifacts
72-
uses: actions/download-artifact@v3
72+
uses: actions/download-artifact@v4
7373
with:
74-
name: collection
74+
name: collection-stable-2.16
7575
path: .cache/collection-tarballs
7676

7777
- name: Install the collection tarball
@@ -99,7 +99,7 @@ jobs:
9999
run: if grep -E 'WARNING|ERROR' .cache/collection-tarballs/log.txt; then exit 1; else exit 0; fi
100100

101101
- name: Store galaxy_importer check log file
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
with:
104104
name: galaxy-importer-log
105105
path: .cache/collection-tarballs/importer_result.json
@@ -116,7 +116,7 @@ jobs:
116116
ansible: [v2.14.13, v2.15.8, v2.16.2, stable-2.16]
117117
steps:
118118
- name: Set up Python ${{ env.python_version }}
119-
uses: actions/setup-python@v4
119+
uses: actions/setup-python@v5
120120
with:
121121
python-version: ${{ env.python_version }}
122122

@@ -127,9 +127,9 @@ jobs:
127127
run: pip install coverage==4.5.4
128128

129129
- name: Download migrated collection artifacts
130-
uses: actions/download-artifact@v3
130+
uses: actions/download-artifact@v4
131131
with:
132-
name: collection
132+
name: collection-${{ matrix.ansible }}
133133
path: .cache/collection-tarballs
134134

135135
- name: Install the collection tarball
@@ -159,7 +159,7 @@ jobs:
159159
python-version: ['3.10']
160160
steps:
161161
- name: Set up Python ${{ matrix.python-version }}
162-
uses: actions/setup-python@v4
162+
uses: actions/setup-python@v5
163163
with:
164164
python-version: ${{ matrix.python-version }}
165165

@@ -170,9 +170,9 @@ jobs:
170170
run: pip install coverage==4.5.4
171171

172172
- name: Download migrated collection artifacts
173-
uses: actions/download-artifact@v3
173+
uses: actions/download-artifact@v4
174174
with:
175-
name: collection
175+
name: collection-${{ matrix.ansible }}
176176
path: .cache/collection-tarballs
177177

178178
- name: Install the collection tarball
@@ -199,7 +199,7 @@ jobs:
199199
MUTEX_URL: https://8v7s765ibh.execute-api.us-west-1.amazonaws.com
200200
steps:
201201
- name: Set up Python ${{ env.python_version }}
202-
uses: actions/setup-python@v4
202+
uses: actions/setup-python@v5
203203
with:
204204
python-version: ${{ env.python_version }}
205205

@@ -210,9 +210,9 @@ jobs:
210210
run: pip install coverage==4.5.4
211211

212212
- name: Download migrated collection artifacts
213-
uses: actions/download-artifact@v3
213+
uses: actions/download-artifact@v4
214214
with:
215-
name: collection
215+
name: collection-stable-2.16
216216
path: .cache/collection-tarballs
217217

218218
- name: Install the collection tarball

0 commit comments

Comments
 (0)