Skip to content

Commit 795887e

Browse files
Merge pull request #1205 from alertlogic/fix_testing
Pin ubuntu version to keep supporting python 3.7
2 parents 63675ec + 13e7523 commit 795887e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/stage1_merge_automatic_prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on: pull_request
88
jobs:
99
test:
1010
if: contains(github.head_ref, 'auto-update')
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
1414
python-version: [3.7, 3.8, 3.9]
@@ -34,7 +34,7 @@ jobs:
3434
merge:
3535
if: contains(github.head_ref, 'auto-update')
3636
needs: test
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-22.04
3838
steps:
3939
- name: Lock(not really)
4040
uses: softprops/turnstyle@v1

.github/workflows/stage2_create_automatic_rel_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
github_release:
1313
if: contains(github.event.head_commit.message, 'Definitions Update')
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Set up Python

.github/workflows/stage3_release_pypi.yml

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

1313
jobs:
1414
test:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
matrix:
1818
python-version: [3.7, 3.8, 3.9]
@@ -33,7 +33,7 @@ jobs:
3333
python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/
3434
deploy:
3535
needs: test
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737
steps:
3838
- uses: actions/checkout@v2
3939
- name: Set up Python

.github/workflows/stage4_release_gh_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
deploy:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Create GH Release

.github/workflows/test_all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
test:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
strategy:
1919
matrix:
2020
python-version: [3.7, 3.8, 3.9]

0 commit comments

Comments
 (0)