Skip to content

Commit

Permalink
upgrades gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrvadala committed Jan 24, 2021
1 parent 536dc65 commit efe7c65
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup dbus permissions
Expand All @@ -28,7 +28,7 @@ jobs:
version: ${{ env.VERSION }}

npm-publish:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/setup-node@v1
Expand All @@ -46,7 +46,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}

tag-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: [build, npm-publish]
steps:
- uses: actions/checkout@v2
Expand All @@ -58,7 +58,7 @@ jobs:
release: v${{ needs.build.outputs.version }}

gh-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: [build, npm-publish]
steps:
- name: Create GitHub Release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
build:
strategy:
matrix:
os: [ ubuntu-18.04 ]
node: [ 10, 12 ]
os: [ ubuntu-20.04 ]
node: [ 10, 12, 14 ]
name: Test Nodejs v${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -32,7 +32,7 @@ jobs:
finish:
name: Finish
needs: build
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Coveralls Finished
uses: coverallsapp/[email protected]
Expand Down

0 comments on commit efe7c65

Please sign in to comment.