Skip to content

Commit

Permalink
fix: CI: specified ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Dec 2, 2022
1 parent 9568b6d commit e7acc52
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

jobs:
execute_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: Execute CI Tests
steps:
- name: Checkout Repository
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

ci_successful:
name: "CI Tests Successful"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: execute_tests
steps:
- name: "Report success"
Expand All @@ -138,7 +138,7 @@ jobs:

update_wiki-build:
name: "Update Wiki - Build"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: ci_successful
if: github.ref == 'refs/heads/master'
steps:
Expand All @@ -159,7 +159,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: update_wiki-build
if: github.ref == 'refs/heads/master'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
publish:
name: "Publish Package"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: "Checkout Repository"
uses: actions/checkout@v2
Expand Down

0 comments on commit e7acc52

Please sign in to comment.