Skip to content

Commit

Permalink
chore: update github actions and node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
divdavem committed Oct 3, 2023
1 parent 74e3605 commit 63e4dd0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
- uses: actions/cache@v3
with:
path: .yarn/cache
Expand All @@ -22,7 +22,7 @@ jobs:
- run: yarn lint
- run: yarn format:check
- run: yarn test --coverage
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 #v3.1.1
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d #v3.1.4
with:
file: coverage/lcov.info
- run: yarn build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
- run: yarn --immutable
- name: npm version
working-directory: src
Expand All @@ -37,7 +37,7 @@ jobs:
- name: npm logout
run: rm ~/.npmrc
- run: git push origin master v${{ inputs.version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Node.js version
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
- run: yarn set version stable
- run: yarn install --no-immutable
- run: yarn up --caret '**'
- run: yarn up -R '**'
- name: Create pull request
uses: peter-evans/create-pull-request@b4d51739f96fca8047ad065eccef63442d8e99f7 # v4.2.0
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2
with:
commit-message: 'chore: Update all dependencies'
branch: dependencies
Expand Down

0 comments on commit 63e4dd0

Please sign in to comment.