Browse Source

Add dependabot.yml and update some actions.

pull/230/head
Fredrik Ekre 2 years ago
parent
commit
a4099cbec6
  1. 7
      .github/dependabot.yml
  2. 6
      .github/workflows/ci.yml

7
.github/dependabot.yml

@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "monthly"

6
.github/workflows/ci.yml

@ -26,7 +26,7 @@ jobs:
- os: macOS-latest - os: macOS-latest
version: '1' version: '1'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1 - uses: julia-actions/setup-julia@v1
with: with:
version: ${{ matrix.version }} version: ${{ matrix.version }}
@ -39,14 +39,14 @@ jobs:
key: .julia-test-${{ matrix.version }}-${{ hashFiles('Project.toml') }} key: .julia-test-${{ matrix.version }}-${{ hashFiles('Project.toml') }}
- uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1 - uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1 - uses: codecov/codecov-action@v3
with: with:
file: lcov.info file: lcov.info
docs: docs:
name: Documentation name: Documentation
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1 - uses: julia-actions/setup-julia@v1
with: with:
version: '1' version: '1'

Loading…
Cancel
Save