Skip to content

Commit

Permalink
chore: github actions ci build update
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Jan 2, 2023
1 parent 88304c6 commit 2b4e224
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
auto-merge:
timeout-minutes: 5

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:

strategy:
matrix:
node-version: [16.x]
os: [ubuntu-20.04]
node-version: [18.x]
os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v2-beta
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 2b4e224

Please sign in to comment.