Skip to content

Commit

Permalink
ci: Add dependabot config for github actions, upgrade github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalton committed Oct 14, 2022
1 parent f95f630 commit 6089245
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
17 changes: 11 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily

- package-ecosystem: npm
directory: /
schedule:
interval: daily
time: '10:00'
open-pull-requests-limit: 10
12 changes: 6 additions & 6 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: [12.x, 14.x, 16.x]
node-versions: ['14', '16', '18', 'lts/*']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand All @@ -25,11 +25,11 @@ jobs:
needs: test
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 'lts/*'
- run: npm install
- name: semantic-release
run: npm run semantic-release
Expand Down

0 comments on commit 6089245

Please sign in to comment.