Skip to content

Commit 343e80d

Browse files
Bump julia-actions/setup-julia from 2 to 3 (#363)
* Bump julia-actions/setup-julia from 2 to 3 Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 2 to 3. - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](julia-actions/setup-julia@v2...v3) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * update dependabot * remove CompatHelper * update documentation workflow --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: lkdvos <ldevos98@gmail.com>
1 parent 23f92f0 commit 343e80d

3 files changed

Lines changed: 13 additions & 59 deletions

File tree

.github/dependabot.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
1-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
21
version: 2
32
updates:
43
- package-ecosystem: "github-actions"
5-
directory: "/" # Location of package manifests
4+
directory: "/"
65
schedule:
7-
interval: "weekly"
6+
interval: "weekly"
7+
- package-ecosystem: "julia"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
groups: # uncomment to group all julia package updates into a single PR
12+
all-julia-packages:
13+
patterns:
14+
- "*"

.github/workflows/CompatHelper.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.github/workflows/Documentation.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,15 @@ on:
1616

1717
jobs:
1818
build:
19-
runs-on: ${{ matrix.os }}
20-
strategy:
21-
matrix:
22-
version:
23-
- '1'
24-
os:
25-
- ubuntu-latest
26-
arch:
27-
- x64
19+
runs-on: ubuntu-latest
2820
steps:
2921
- uses: actions/checkout@v6
3022
- uses: julia-actions/setup-julia@latest
3123
with:
32-
version: ${{ matrix.version }}
33-
arch: ${{ matrix.arch }}
24+
version: 1
3425
- name: Install dependencies
3526
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
3627
- name: Build and deploy
3728
env:
3829
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
39-
run: julia --project=docs/ docs/make.jl
30+
run: julia --project=docs/ docs/make.jl

0 commit comments

Comments
 (0)