From 3575a68ef3cafe035538fb4ac14eb97176da6bdd Mon Sep 17 00:00:00 2001 From: lkdvos Date: Thu, 23 Apr 2026 11:44:24 -0400 Subject: [PATCH 1/2] update workflows --- .github/workflows/CI.yml | 13 ++++++------- .github/workflows/Documentation.yml | 18 +++++------------- .github/workflows/DocumentationCleanup.yml | 4 ++-- 3 files changed, 13 insertions(+), 22 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f1aeac05..7f55b79b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,31 +13,30 @@ concurrency: jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: version: - - 'lts' # minimal supported version - # - '1.11' # julia v1.11 + - 'min' - '1' os: - ubuntu-latest - macOS-latest - windows-latest steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest env: JULIA_NUM_THREADS: 4 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 with: files: lcov.info token: "${{ secrets.CODECOV_TOKEN }}" diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 8599a658..dded1356 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -12,28 +12,20 @@ on: - 'release-' tags: '*' pull_request: + workflow_dispatch: jobs: build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - version: - - '1' - os: - - ubuntu-latest - arch: - - x64 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@latest with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} + version: 1 - name: Install dependencies run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key - run: julia --project=docs/ docs/make.jl \ No newline at end of file + run: julia --project=docs/ docs/make.jl diff --git a/.github/workflows/DocumentationCleanup.yml b/.github/workflows/DocumentationCleanup.yml index 36f8569a..807b2d30 100644 --- a/.github/workflows/DocumentationCleanup.yml +++ b/.github/workflows/DocumentationCleanup.yml @@ -16,7 +16,7 @@ jobs: contents: write steps: - name: Checkout gh-pages branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages - name: Delete preview and history + push changes @@ -30,4 +30,4 @@ jobs: git push --force origin gh-pages-new:gh-pages fi env: - preview_dir: previews/PR${{ github.event.number }} \ No newline at end of file + preview_dir: previews/PR${{ github.event.number }} From ec64a9d845275216919843fdfdfa933a13ce253a Mon Sep 17 00:00:00 2001 From: lkdvos Date: Thu, 23 Apr 2026 11:44:27 -0400 Subject: [PATCH 2/2] add dependabot --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..a49032f8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "julia" + directory: "/" + schedule: + interval: "weekly" + groups: # uncomment to group all julia package updates into a single PR + all-julia-packages: + patterns: + - "*"