mirror of https://github.com/akheron/jansson
Merge pull request #672 from pnacht/add-dependabot
Add dependabot, update GitHub Actions
This commit is contained in:
commit
f52d79a4d3
|
@ -0,0 +1,15 @@
|
||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "monthly"
|
||||||
|
groups:
|
||||||
|
github-actions:
|
||||||
|
patterns:
|
||||||
|
- "*"
|
|
@ -24,7 +24,7 @@ jobs:
|
||||||
fuzz-seconds: 600
|
fuzz-seconds: 600
|
||||||
dry-run: false
|
dry-run: false
|
||||||
- name: Upload Crash
|
- name: Upload Crash
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v3
|
||||||
if: failure() && steps.build.outcome == 'success'
|
if: failure() && steps.build.outcome == 'success'
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: artifacts
|
||||||
|
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- run: ./scripts/clang-format-check
|
- run: ./scripts/clang-format-check
|
||||||
|
|
||||||
autotools:
|
autotools:
|
||||||
|
@ -24,7 +24,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- if: ${{runner.os == 'macOS'}}
|
- if: ${{runner.os == 'macOS'}}
|
||||||
run: brew install autoconf automake libtool
|
run: brew install autoconf automake libtool
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- run: autoreconf -fi
|
- run: autoreconf -fi
|
||||||
- env:
|
- env:
|
||||||
CC: ${{matrix.cc}}
|
CC: ${{matrix.cc}}
|
||||||
|
@ -49,7 +49,7 @@ jobs:
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- env:
|
- env:
|
||||||
CC: ${{matrix.cc}}
|
CC: ${{matrix.cc}}
|
||||||
run: cmake .
|
run: cmake .
|
||||||
|
@ -59,8 +59,8 @@ jobs:
|
||||||
valgrind:
|
valgrind:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- run: sudo apt update && sudo apt install valgrind
|
- run: sudo apt update && sudo apt install valgrind
|
||||||
- run: cmake -DJANSSON_TEST_WITH_VALGRIND=ON .
|
- run: cmake -DJANSSON_TEST_WITH_VALGRIND=ON .
|
||||||
- run: cmake --build .
|
- run: cmake --build .
|
||||||
- run: ctest
|
- run: ctest
|
Loading…
Reference in New Issue