Skip to content

Commit 782492b

Browse files
ci: update python version from 3.6 to 3.8 (#5849)
1 parent 4b21c47 commit 782492b

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

.github/workflows/deploy-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
# Build the ansible-operator-base image.
1515
ansible-operator-base:
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-20.04
1717
environment: deploy
1818
steps:
1919

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
check_docs_only:
1515
name: check_docs_only
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-20.04
1717
outputs:
1818
skip: ${{ steps.check_docs_only.outputs.skip }}
1919
steps:
@@ -34,7 +34,7 @@ jobs:
3434
needs: check_docs_only
3535
# Run this job on a tag like 'vX.Y.Z' or on a branch or pull request with code changes.
3636
if: startsWith(github.ref, 'refs/tags/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
37-
runs-on: ubuntu-18.04
37+
runs-on: ubuntu-20.04
3838
environment: deploy
3939
steps:
4040
- name: checkout
@@ -68,7 +68,7 @@ jobs:
6868
needs: check_docs_only
6969
# Run this job on a tag like 'vX.Y.Z' or on a branch or pull request with code changes.
7070
if: startsWith(github.ref, 'refs/tags/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
71-
runs-on: ubuntu-18.04
71+
runs-on: ubuntu-20.04
7272
environment: deploy
7373
strategy:
7474
matrix:
@@ -117,7 +117,7 @@ jobs:
117117
needs: check_docs_only
118118
# Run this job on a tag like 'scorecard-kuttl/vX.Y.Z' or on a branch or pull request with code changes.
119119
if: startsWith(github.ref, 'refs/tags/scorecard-kuttl/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
120-
runs-on: ubuntu-18.04
120+
runs-on: ubuntu-20.04
121121
environment: deploy
122122
steps:
123123

.github/workflows/freshen-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
git_tags:
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-20.04
1717
outputs:
1818
git_tags: ${{ steps.tags.outputs.git_tags }}
1919
steps:
@@ -27,7 +27,7 @@ jobs:
2727
build:
2828
name: build
2929
needs: git_tags
30-
runs-on: ubuntu-18.04
30+
runs-on: ubuntu-20.04
3131
environment: deploy
3232
strategy:
3333
matrix:

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
check_docs_only:
77
name: check_docs_only
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
@@ -22,7 +22,7 @@ jobs:
2222
2323
integration:
2424
name: integration
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-20.04
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:

.github/workflows/rerun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
rerun_tests:
77
name: rerun_pr_tests
88
if: ${{ github.event.issue.pull_request }}
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-20.04
1010
steps:
1111
- uses: estroz/[email protected]
1212
with:

.github/workflows/test-ansible.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
check_docs_only:
77
name: check_docs_only
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
@@ -22,7 +22,7 @@ jobs:
2222
2323
e2e:
2424
name: e2e
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-20.04
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
@@ -37,7 +37,7 @@ jobs:
3737

3838
e2e-molecule:
3939
name: e2e-molecule
40-
runs-on: ubuntu-18.04
40+
runs-on: ubuntu-20.04
4141
needs: check_docs_only
4242
if: needs.check_docs_only.outputs.skip != 'true'
4343
steps:
@@ -50,7 +50,7 @@ jobs:
5050
- run: sudo rm -rf /usr/local/bin/kustomize
5151
- run: |
5252
env
53-
export PATH=/opt/python/3.6.7/bin:${PATH}
53+
export PATH=/opt/python/3.8.12/bin:${PATH}
5454
sudo apt-get install python3 python3-pip
5555
sudo pip3 install --upgrade setuptools pip
5656
sudo pip3 install ansible~=2.9.13

.github/workflows/test-go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
check_docs_only:
77
name: check_docs_only
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
@@ -22,7 +22,7 @@ jobs:
2222
2323
e2e:
2424
name: e2e
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-20.04
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
@@ -37,7 +37,7 @@ jobs:
3737

3838
unit:
3939
name: unit
40-
runs-on: ubuntu-18.04
40+
runs-on: ubuntu-20.04
4141
needs: check_docs_only
4242
if: needs.check_docs_only.outputs.skip != 'true'
4343
steps:

.github/workflows/test-helm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
check_docs_only:
77
name: check_docs_only
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
@@ -22,7 +22,7 @@ jobs:
2222
2323
e2e:
2424
name: e2e
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-20.04
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:

.github/workflows/test-sanity.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
check_docs_only:
77
name: check_docs_only
8-
runs-on: ubuntu-18.04
8+
runs-on: ubuntu-20.04
99
outputs:
1010
skip: ${{ steps.check_docs_only.outputs.skip }}
1111
steps:
@@ -22,7 +22,7 @@ jobs:
2222
2323
sanity:
2424
name: sanity
25-
runs-on: ubuntu-18.04
25+
runs-on: ubuntu-20.04
2626
needs: check_docs_only
2727
if: needs.check_docs_only.outputs.skip != 'true'
2828
steps:
@@ -38,7 +38,7 @@ jobs:
3838

3939
docs:
4040
name: docs
41-
runs-on: ubuntu-18.04
41+
runs-on: ubuntu-20.04
4242
steps:
4343
- uses: actions/checkout@v2
4444
with:

0 commit comments

Comments
 (0)