Skip to content

Commit

Permalink
Merge pull request #768 from didoda/feat/github-actions-ubuntu-latest
Browse files Browse the repository at this point in the history
Github actions ubuntu-latest
  • Loading branch information
didoda authored May 6, 2022
2 parents ed70321 + 9f67bff commit 232f205
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
javascript-build:
name: 'Check javascript build'
if: "!contains(github.event.commits[0].message, '[skip ci]') && !contains(github.event.commits[0].message, '[ci skip]')"
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-latest'

strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cs:
name: 'Check coding style'
if: "!contains(github.event.commits[0].message, '[skip ci]') && !contains(github.event.commits[0].message, '[ci skip]')"
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-latest'

strategy:
matrix:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
stan:
name: 'Static code analyzer'
if: "!contains(github.event.commits[0].message, '[skip ci]') && !contains(github.event.commits[0].message, '[ci skip]')"
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-latest'
continue-on-error: true

strategy:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
unit:
name: 'Run unit tests'
if: "!contains(github.event.commits[0].message, '[skip ci]') && !contains(github.event.commits[0].message, '[ci skip]')"
runs-on: 'ubuntu-20.04'
runs-on: 'ubuntu-latest'
env:
BEDITA_API_KEY: 12345
BEDITA_API: http://127.0.0.1:8080
Expand Down

0 comments on commit 232f205

Please sign in to comment.