Skip to content

Commit 6a4c535

Browse files
authored
Prep for v1.2.0 (#230)
1 parent 4cb5f8e commit 6a4c535

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 13 deletions
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,16 @@ 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@v1
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
39+
token: ${{ secrets.CODECOV_TOKEN }}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GLPK"
22
uuid = "60bf3e95-4087-53dc-ae20-288a0d20c6a6"
33
repo = "https://github.com/jump-dev/GLPK.jl.git"
4-
version = "1.1.3"
4+
version = "1.2.0"
55

66
[deps]
77
GLPK_jll = "e8aa6df9-e6ca-548a-97ff-1f85fc5b8b98"

0 commit comments

Comments
 (0)