Skip to content

Commit 6299849

Browse files
authored
Merge pull request #41 from intelowlproject/develop
added dependabot and fixing workflow
2 parents 3387af5 + 85ac390 commit 6299849

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

Diff for: .github/dependabot.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
day: "tuesday"
8+
target-branch: "develop"
9+
reviewers:
10+
- drosetti
11+
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "monthly"
16+
day: "tuesday"
17+
target-branch: "develop"
18+
ignore:
19+
# ignore all patch updates since we are using ~=
20+
# this does not work for security updates
21+
- dependency-name: "*"
22+
update-types: ["version-update:semver-patch"]

Diff for: .github/workflows/nextjs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- name: Static HTML export with Next.js
8181
run: ${{ steps.detect-package-manager.outputs.runner }} next export
8282
- name: Upload artifact
83-
uses: actions/upload-pages-artifact@v1
83+
uses: actions/upload-pages-artifact@v3
8484
with:
8585
path: ./out
8686

0 commit comments

Comments
 (0)