Skip to content

Commit

Permalink
Use fixed version of ubuntu (#110)
Browse files Browse the repository at this point in the history
We want to pin all our dependencies, so that our builds are
reproducible.
  • Loading branch information
johnboyes authored Aug 17, 2020
1 parent 477ab30 commit b17ae35
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

build_and_push_docker_image:
name: Build and push image
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-commit-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
check-commit-message-style:
if: (github.actor!= 'dependabot[bot]') && (contains(github.head_ref, 'dependabot/github_actions/') == false)
name: Check commit message style
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Check
uses: mristin/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_semver_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

check_semver_label:
name: Check for semantic version label
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
# always use the latest version here, can't use Dependabot or we'll be caught in an infinite update loop
- uses: docker://agilepathway/pull-request-label-checker:latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github_tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

tag:
name: Tag semantic version
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
outputs:
tag: ${{ steps.tag.outputs.tag }}
steps:
Expand All @@ -26,7 +26,7 @@ jobs:
release:
needs: tag
name: Create GitHub Release
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
-
name: Checkout
Expand All @@ -50,7 +50,7 @@ jobs:
build_and_push_docker_image:
needs: tag
name: Build and push image
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Tests
jobs:
tests:
name: Integration
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/[email protected]
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:

golangci-lint:
name: runner / golangci-lint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: reviewdog/[email protected]
Expand All @@ -19,7 +19,7 @@ jobs:

hadolint:
name: runner / hadolint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/[email protected]
Expand All @@ -31,7 +31,7 @@ jobs:

yamllint:
name: runner / yamllint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- name: yamllint
Expand All @@ -42,7 +42,7 @@ jobs:

shellcheck:
name: runner / shellcheck
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- name: shellcheck
Expand All @@ -56,7 +56,7 @@ jobs:

misspell:
name: runner / misspell
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: reviewdog/[email protected]
Expand All @@ -66,7 +66,7 @@ jobs:

languagetool:
name: runner / languagetool
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
- uses: reviewdog/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/virtual_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Tests
jobs:
tests:
name: Virtual
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Install Go
uses: actions/[email protected]
Expand Down

0 comments on commit b17ae35

Please sign in to comment.