Skip to content

Commit f69e3ab

Browse files
authored
Use fixed version of ubuntu (#48)
We want to pin all our dependencies, so that our builds are reproducible.
1 parent 27508c5 commit f69e3ab

6 files changed

+17
-17
lines changed

.github/workflows/check-commit-message.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
check-commit-message-style:
1616
if: (github.actor!= 'dependabot[bot]') && (contains(github.head_ref, 'dependabot/github_actions/') == false)
1717
name: Check commit message style
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-20.04
1919
steps:
2020
- name: Check
2121
uses: mristin/[email protected]

.github/workflows/check_semver_labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
check_semver_label:
1515
name: Check for semantic version label
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-20.04
1717
steps:
1818
- uses: docker://agilepathway/pull-request-label-checker:v1.0.9
1919
with:

.github/workflows/dependabot_hack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
dependabot_hack:
1111
name: Ensure dependabot version checks
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-20.04
1313
steps:
1414

1515
# update the version manually in these places, too:

.github/workflows/github_tag_and_release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
tag:
1212
name: Tag semantic version
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-20.04
1414
steps:
1515
- name: Tag
1616
uses: K-Phoen/[email protected]
@@ -23,7 +23,7 @@ jobs:
2323
release:
2424
needs: tag
2525
name: Create GitHub Release
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-20.04
2727
steps:
2828
-
2929
name: Checkout

.github/workflows/reviewdog.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
hadolint:
99
name: runner / hadolint
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Check out code
1313
uses: actions/[email protected]
@@ -19,7 +19,7 @@ jobs:
1919

2020
yamllint:
2121
name: runner / yamllint
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-20.04
2323
steps:
2424
- uses: actions/[email protected]
2525
- name: yamllint
@@ -30,7 +30,7 @@ jobs:
3030

3131
shellcheck:
3232
name: runner / shellcheck
33-
runs-on: ubuntu-latest
33+
runs-on: ubuntu-20.04
3434
steps:
3535
- uses: actions/[email protected]
3636
- name: shellcheck
@@ -44,7 +44,7 @@ jobs:
4444

4545
misspell:
4646
name: runner / misspell
47-
runs-on: ubuntu-latest
47+
runs-on: ubuntu-20.04
4848
steps:
4949
- uses: actions/[email protected]
5050
- uses: reviewdog/[email protected]
@@ -54,7 +54,7 @@ jobs:
5454

5555
languagetool:
5656
name: runner / languagetool
57-
runs-on: ubuntu-latest
57+
runs-on: ubuntu-20.04
5858
steps:
5959
- uses: actions/[email protected]
6060
- uses: reviewdog/[email protected]

.github/workflows/tests.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
install_latest_version_by_default:
1515
name: Install latest version by default
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-20.04
1717
steps:
1818
- uses: actions/[email protected]
1919
- name: Install Hoverfly
@@ -30,7 +30,7 @@ jobs:
3030
3131
install_specific_version:
3232
name: Install specific version
33-
runs-on: ubuntu-latest
33+
runs-on: ubuntu-20.04
3434
env:
3535
HOVERFLY_VERSION: v1.2.0
3636
steps:
@@ -48,7 +48,7 @@ jobs:
4848
4949
install_fails_if_version_does_not_begin_with_v:
5050
name: Install fails if version does not begin with v
51-
runs-on: ubuntu-latest
51+
runs-on: ubuntu-20.04
5252
env:
5353
HOVERFLY_VERSION: "1.2.0"
5454
steps:
@@ -66,7 +66,7 @@ jobs:
6666
6767
install_fails_if_no_runner_github_workspace_path:
6868
name: Install fails when no runner GitHub workspace path provided
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-20.04
7070
steps:
7171
- uses: actions/[email protected]
7272
- name: Install Hoverfly
@@ -79,7 +79,7 @@ jobs:
7979
8080
install_fails_if_incorrect_runner_github_workspace_path:
8181
name: Install fails when incorrect runner GitHub workspace path provided
82-
runs-on: ubuntu-latest
82+
runs-on: ubuntu-20.04
8383
steps:
8484
- uses: actions/[email protected]
8585
- name: Install Hoverfly
@@ -94,7 +94,7 @@ jobs:
9494
9595
use_script_to_enable_https_simulations:
9696
name: Enable https simulations
97-
runs-on: ubuntu-latest
97+
runs-on: ubuntu-20.04
9898
steps:
9999
- uses: actions/[email protected]
100100
- name: Install Hoverfly
@@ -115,7 +115,7 @@ jobs:
115115
116116
https_simulations_do_not_work_without_https_script:
117117
name: Verify https simulations will not work without script
118-
runs-on: ubuntu-latest
118+
runs-on: ubuntu-20.04
119119
steps:
120120
- uses: actions/[email protected]
121121
- name: Install Hoverfly

0 commit comments

Comments
 (0)