Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add dependabot for github actions #314

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
day: 'saturday'
labels: [ 'dependencies' ]
commit-message:
prefix: 'chore' ## prefix maximum string length of 15
include: 'scope'
open-pull-requests-limit: 999
7 changes: 6 additions & 1 deletion .github/workflows/cibuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v2
- name: Set up JDK 1.8
# see https://github.com/actions/setup-java
uses: actions/setup-java@v1
with:
java-version: 1.8
Expand All @@ -36,11 +39,13 @@ jobs:
cd docgen/xml
./gen.sh
- name: Archive JSON Schema documentation
# https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v2
with:
name: JSON-Schema-documentation
path: docgen/json/docs
- name: Archive XML Schema documentation
# https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v2
with:
name: XML-Schema-documentation
Expand Down
Loading