From ef3dccfded76d8a933c6041119616cb117d93e7a Mon Sep 17 00:00:00 2001 From: David Widmann Date: Fri, 30 Aug 2024 01:51:59 +0200 Subject: [PATCH 1/5] Use lts in GH actions --- .github/workflows/ci.yml | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ad6ac27..61d33e5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: version: - - 1.6 # LTS + - lts - 1 - 'pre' - 'nightly' @@ -21,32 +21,23 @@ jobs: arch: - x64 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} show-versioninfo: true - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest + - uses: julia-actions/cache@v2 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 docs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: - version: 1.7 + version: 1 - run: | julia --project=docs -e ' using Pkg From 295f2b8553feb04ddd8c5f482d41453fefe63594 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Fri, 30 Aug 2024 01:53:45 +0200 Subject: [PATCH 2/5] Add dependabot --- .github/dependabot.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..d60f0707 --- /dev/null +++ b/.github/dependabot.yaml @@ -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" From 5ca3d61bb018f16f42ab89a3226e82ec5dd64600 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Fri, 30 Aug 2024 02:19:57 +0200 Subject: [PATCH 3/5] Update Invalidations.yml --- .github/workflows/Invalidations.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Invalidations.yml b/.github/workflows/Invalidations.yml index 4d0004e8..d3e97a6f 100644 --- a/.github/workflows/Invalidations.yml +++ b/.github/workflows/Invalidations.yml @@ -16,15 +16,15 @@ jobs: if: github.base_ref == github.event.repository.default_branch runs-on: ubuntu-latest steps: - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: version: '1' - - uses: actions/checkout@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-invalidations@v1 id: invs_pr - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} - uses: julia-actions/julia-buildpkg@v1 From 0daac46d93caed519acdf1f35896344d332c8266 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Fri, 30 Aug 2024 02:20:23 +0200 Subject: [PATCH 4/5] Keep using 1.7 for docs --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61d33e5a..4b7ff2ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: - version: 1 + version: 1.7 - run: | julia --project=docs -e ' using Pkg From c8bbe4ff709baac0a7424cf26840709f6d7080bf Mon Sep 17 00:00:00 2001 From: David Widmann Date: Fri, 30 Aug 2024 11:53:45 +0200 Subject: [PATCH 5/5] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b7ff2ac..1e4cb308 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: version: - - lts + - 1.6 # LTS - 1 - 'pre' - 'nightly'