Skip to content

Commit

Permalink
chore: more workflows fixes (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Arregui committed Jun 13, 2023
1 parent 5bb4139 commit e56e9cf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 41 deletions.
36 changes: 1 addition & 35 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,5 @@ updates:
schedule:
interval: daily
time: "10:00"
timezone: "America/Buenos_Aires"
open-pull-requests-limit: 10
ignore:
- dependency-name: "@microsoft/api-extractor"
versions:
- 7.13.3
- 7.13.4
- 7.13.5
- dependency-name: rollup
versions:
- 2.38.5
- 2.39.1
- 2.41.0
- 2.41.4
- 2.42.0
- 2.42.2
- 2.42.3
- dependency-name: "@microsoft/api-documenter"
versions:
- 7.12.11
- 7.12.8
- 7.12.9
- dependency-name: rollup-plugin-typescript2
versions:
- 0.30.0
- dependency-name: "@types/mocha"
versions:
- 8.2.1
- dependency-name: bignumber.js
versions:
- 9.0.1
- dependency-name: chai
versions:
- 4.3.0
- dependency-name: crypto-js
versions:
- 4.0.0
4 changes: 2 additions & 2 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- name: clean
run: make clean
- name: install
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
if: ${{ github.actor != 'dependabot[bot]' }}
uses: github/codeql-action/init@v2
with:
languages: typescript
Expand All @@ -34,6 +35,7 @@ jobs:
if: ${{ failure() }}
run: cp dist/temp/eth-connect.api.md report/eth-connect.api.md && git diff
- name: Perform CodeQL Analysis
if: ${{ github.actor != 'dependabot[bot]' }}
uses: github/codeql-action/analyze@v2
- name: report coverage
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit e56e9cf

Please sign in to comment.