Skip to content

Commit 829b72b

Browse files
authored
Prep for v1.1.2 (#95)
1 parent f9e62c3 commit 829b72b

File tree

5 files changed

+16
-37
lines changed

5 files changed

+16
-37
lines changed

.github/workflows/CompatHelper.yml

-19
This file was deleted.

.github/workflows/TagBot.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1

.github/workflows/ci.yml

+8-13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches: [master]
55
pull_request:
66
types: [opened, synchronize, reopened]
7+
# needed to allow julia-actions/cache to delete old caches that it has created
8+
permissions:
9+
actions: write
10+
contents: read
711
jobs:
812
test:
913
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -20,24 +24,15 @@ jobs:
2024
os: ubuntu-latest
2125
arch: x86
2226
steps:
23-
- uses: actions/checkout@v2
24-
- uses: julia-actions/setup-julia@v1
27+
- uses: actions/checkout@v4
28+
- uses: julia-actions/setup-julia@v2
2529
with:
2630
version: ${{ matrix.version }}
2731
arch: ${{ matrix.arch }}
28-
- uses: actions/cache@v1
29-
env:
30-
cache-name: cache-artifacts
31-
with:
32-
path: ~/.julia/artifacts
33-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
34-
restore-keys: |
35-
${{ runner.os }}-test-${{ env.cache-name }}-
36-
${{ runner.os }}-test-
37-
${{ runner.os }}-
32+
- uses: julia-actions/cache@v2
3833
- uses: julia-actions/julia-buildpkg@v1
3934
- uses: julia-actions/julia-runtest@v1
4035
- uses: julia-actions/julia-processcoverage@v1
41-
- uses: codecov/codecov-action@v1
36+
- uses: codecov/codecov-action@v4
4237
with:
4338
file: lcov.info

.github/workflows/format_check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- uses: julia-actions/setup-julia@latest
1414
with:
1515
version: '1'
16-
- uses: actions/checkout@v1
16+
- uses: actions/checkout@v4
1717
- name: Format check
1818
shell: julia --color=yes {0}
1919
run: |
2020
using Pkg
21-
Pkg.add(PackageSpec(name="JuliaFormatter", version="0.22.4"))
21+
Pkg.add(PackageSpec(name="JuliaFormatter", version="1"))
2222
using JuliaFormatter
2323
format(".", verbose=true)
2424
out = String(read(Cmd(`git diff`)))

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "CSDP"
22
uuid = "0a46da34-8e4b-519e-b418-48813639ff34"
33
repo = "https://github.com/jump-dev/CSDP.jl.git"
4-
version = "1.1.1"
4+
version = "1.1.2"
55

66
[deps]
77
CSDP_jll = "9ce75daa-2788-5e2c-ba1d-cf8c48367b27"

0 commit comments

Comments
 (0)