Skip to content

Commit c6d23d2

Browse files
committed
Update CI & base-image to centos9
[noissue]
1 parent 59554bd commit c6d23d2

File tree

15 files changed

+43
-43
lines changed

15 files changed

+43
-43
lines changed

.github/template_gitref

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2021.08.26-327-g6a0d984
1+
2021.08.26-330-g0b7d0c1

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
fetch-depth: 1
2525
path: "pulp_python"
26-
- uses: "actions/setup-python@v4"
26+
- uses: "actions/setup-python@v5"
2727
with:
2828
python-version: "3.11"
2929
- name: "Install python dependencies"
@@ -36,7 +36,7 @@ jobs:
3636
python3 setup.py sdist bdist_wheel --python-tag py3
3737
twine check dist/*
3838
- name: "Upload Package whl"
39-
uses: "actions/upload-artifact@v3"
39+
uses: "actions/upload-artifact@v4"
4040
with:
4141
name: "plugin_package"
4242
path: "pulp_python/dist/"

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
fetch-depth: 1
3030

31-
- uses: "actions/setup-python@v4"
31+
- uses: "actions/setup-python@v5"
3232
with:
3333
python-version: "3.11"
3434

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
fetch-depth: 0
2727
path: "pulp_python"
28-
- uses: "actions/setup-python@v4"
28+
- uses: "actions/setup-python@v5"
2929
with:
3030
python-version: "3.11"
3131
- name: "Install python dependencies"
@@ -67,10 +67,11 @@ jobs:
6767
mkdir -p "pulp_python"
6868
working-directory: "."
6969
- name: "Download Deprecations"
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
72-
name: "deprecations"
72+
pattern: "deprecations-*"
7373
path: "pulp_python"
74+
merge-multiple: true
7475
- name: "Print deprecations"
7576
run: |
7677
cat deprecations-*.txt | sort -u

.github/workflows/create-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fetch-depth: 0
2727
path: "pulp_python"
2828

29-
- uses: "actions/setup-python@v4"
29+
- uses: "actions/setup-python@v5"
3030
with:
3131
python-version: "3.11"
3232

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-depth: 1
2525
path: "pulp_python"
2626

27-
- uses: "actions/setup-python@v4"
27+
- uses: "actions/setup-python@v5"
2828
with:
2929
python-version: "3.11"
3030

.github/workflows/nightly.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
fetch-depth: 0
3939
path: "pulp_python"
4040

41-
- uses: "actions/setup-python@v4"
41+
- uses: "actions/setup-python@v5"
4242
with:
4343
python-version: "3.11"
4444

@@ -76,12 +76,12 @@ jobs:
7676
fetch-depth: 1
7777
path: "pulp_python"
7878

79-
- uses: actions/download-artifact@v3
79+
- uses: actions/download-artifact@v4
8080
with:
8181
name: "plugin_package"
8282
path: "pulp_python/dist/"
8383

84-
- uses: "actions/setup-python@v4"
84+
- uses: "actions/setup-python@v5"
8585
with:
8686
python-version: "3.11"
8787

@@ -96,13 +96,13 @@ jobs:
9696
echo "TEST=${{ matrix.env.TEST }}" >> $GITHUB_ENV
9797
9898
- name: Download built docs
99-
uses: actions/download-artifact@v3
99+
uses: actions/download-artifact@v4
100100
with:
101101
name: "docs.tar"
102102
path: "pulp_python"
103103

104104
- name: Download Python client docs
105-
uses: actions/download-artifact@v3
105+
uses: actions/download-artifact@v4
106106
with:
107107
name: "python-client-docs.tar"
108108
path: "pulp_python"

.github/workflows/publish.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
repository: "pulp/pulp-openapi-generator"
4040
path: "pulp-openapi-generator"
4141

42-
- uses: "actions/setup-python@v4"
42+
- uses: "actions/setup-python@v5"
4343
with:
4444
python-version: "3.11"
4545

46-
- uses: "actions/download-artifact@v3"
46+
- uses: "actions/download-artifact@v4"
4747
with:
4848
name: "plugin_package"
4949
path: "pulp_python/dist/"
@@ -89,20 +89,20 @@ jobs:
8989
.github/workflows/scripts/install_ruby_client.sh
9090
shell: "bash"
9191
- name: "Upload python client packages"
92-
uses: "actions/upload-artifact@v3"
92+
uses: "actions/upload-artifact@v4"
9393
with:
9494
name: "python-client.tar"
9595
path: "pulp_python/python-python-client.tar"
9696
if-no-files-found: "error"
9797

9898
- name: "Upload python client docs"
99-
uses: "actions/upload-artifact@v3"
99+
uses: "actions/upload-artifact@v4"
100100
with:
101101
name: "python-client-docs.tar"
102102
path: "pulp_python/python-python-client-docs.tar"
103103
if-no-files-found: "error"
104104
- name: "Upload ruby client packages"
105-
uses: "actions/upload-artifact@v3"
105+
uses: "actions/upload-artifact@v4"
106106
with:
107107
name: "ruby-client.tar"
108108
path: "pulp_python/python-ruby-client.tar"
@@ -115,7 +115,7 @@ jobs:
115115
tar -cvf docs/docs.tar docs/_build
116116
117117
- name: "Upload built docs"
118-
uses: actions/upload-artifact@v3
118+
uses: actions/upload-artifact@v4
119119
with:
120120
name: "docs.tar"
121121
path: "pulp_python/docs/docs.tar"
@@ -145,12 +145,12 @@ jobs:
145145
fetch-depth: 1
146146
path: "pulp_python"
147147

148-
- uses: "actions/download-artifact@v3"
148+
- uses: "actions/download-artifact@v4"
149149
with:
150150
name: "plugin_package"
151151
path: "pulp_python/dist/"
152152

153-
- uses: "actions/setup-python@v4"
153+
- uses: "actions/setup-python@v5"
154154
with:
155155
python-version: "3.11"
156156

@@ -184,7 +184,7 @@ jobs:
184184
path: "pulp_python"
185185

186186
- name: "Download Python client"
187-
uses: "actions/download-artifact@v3"
187+
uses: "actions/download-artifact@v4"
188188
with:
189189
name: "python-client.tar"
190190
path: "pulp_python/"
@@ -193,7 +193,7 @@ jobs:
193193
run: |
194194
tar -xvf python-python-client.tar
195195
196-
- uses: "actions/setup-python@v4"
196+
- uses: "actions/setup-python@v5"
197197
with:
198198
python-version: "3.11"
199199

@@ -227,7 +227,7 @@ jobs:
227227
path: "pulp_python"
228228

229229
- name: "Download Ruby client"
230-
uses: "actions/download-artifact@v3"
230+
uses: "actions/download-artifact@v4"
231231
with:
232232
name: "ruby-client.tar"
233233
path: "pulp_python/"
@@ -263,7 +263,7 @@ jobs:
263263
fetch-depth: 1
264264
path: "pulp_python"
265265

266-
- uses: "actions/setup-python@v4"
266+
- uses: "actions/setup-python@v5"
267267
with:
268268
python-version: "3.11"
269269

@@ -280,13 +280,13 @@ jobs:
280280
SECRETS_CONTEXT: "${{ toJson(secrets) }}"
281281

282282
- name: "Download built docs"
283-
uses: "actions/download-artifact@v3"
283+
uses: "actions/download-artifact@v4"
284284
with:
285285
name: "docs.tar"
286286
path: "pulp_python/"
287287

288288
- name: "Download Python client docs"
289-
uses: "actions/download-artifact@v3"
289+
uses: "actions/download-artifact@v4"
290290
with:
291291
name: "python-client-docs.tar"
292292
path: "pulp_python/"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
path: "pulp_python"
2929
token: ${{ secrets.RELEASE_TOKEN }}
3030

31-
- uses: "actions/setup-python@v4"
31+
- uses: "actions/setup-python@v5"
3232
with:
3333
python-version: "3.11"
3434

.github/workflows/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ cat >> vars/main.yaml << VARSYAML
8181
pulp_env: {}
8282
pulp_settings: {"allowed_export_paths": "/tmp", "allowed_import_paths": "/tmp", "orphan_protection_time": 0, "pypi_api_hostname": "https://pulp:443"}
8383
pulp_scheme: https
84-
pulp_default_container: ghcr.io/pulp/pulp-ci-centos:latest
84+
pulp_default_container: ghcr.io/pulp/pulp-ci-centos9:latest
8585
VARSYAML
8686

8787
if [ "$TEST" = "s3" ]; then

0 commit comments

Comments
 (0)