From c2bd7b7585220ac962219ee4fa85562764b60b3c Mon Sep 17 00:00:00 2001 From: Dae Woo Kim Date: Thu, 7 May 2026 14:24:32 -0500 Subject: [PATCH 1/2] Bump min Julia compat to 1.10 and update CI matrix - Raise julia compat lower bound from 1 to 1.10 (current LTS) - Replace hardcoded versions '1.6'/'1.1' with 'min' in CI matrix - Update setup-julia action from v1 to v2 - Bump patch version to 1.0.1 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/CI.yml | 5 ++--- Project.toml | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8d4875b..b22ded5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,8 +13,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' - - '1.1' + - 'min' - '1' # - 'nightly' os: @@ -23,7 +22,7 @@ jobs: - x64 steps: - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} diff --git a/Project.toml b/Project.toml index 053e18c..26ae93c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "RegisterWorkerShell" uuid = "978d31ce-2656-11e9-22d6-b5c46a1a3d3e" -version = "1.0.0" +version = "1.0.1" authors = ["Tim Holy "] [deps] @@ -21,7 +21,7 @@ ImageMetadata = "0.9" SharedArrays = "1" SimpleTraits = "0.8, 0.9" Test = "1" -julia = "1" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" From d5a736cc2b4f3e615113e2888bf891a574dc4d0e Mon Sep 17 00:00:00 2001 From: Dae Woo Kim Date: Thu, 7 May 2026 14:26:07 -0500 Subject: [PATCH 2/2] Update TagBot workflow to use TAGBOT_TOKEN and drop Documenter key Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/TagBot.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 9880dd0..44db983 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -28,8 +28,6 @@ jobs: steps: - uses: JuliaRegistries/TagBot@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.TAGBOT_TOKEN }} # Edit the following line to reflect the actual name of the GitHub Secret containing your private key - ssh: ${{ secrets.DOCUMENTER_KEY }} - # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} registry: HolyLab/HolyLabRegistry \ No newline at end of file