Skip to content

Commit f8f1f0a

Browse files
authored
Update actions used in CI (#2484)
1 parent 89be884 commit f8f1f0a

File tree

5 files changed

+7
-16
lines changed

5 files changed

+7
-16
lines changed

.github/workflows/aqua.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: julia-actions/setup-julia@latest
1313
with:
1414
version: '1'
15-
- uses: actions/checkout@v1
15+
- uses: actions/checkout@v4
1616
- name: Aqua
1717
shell: julia --color=yes {0}
1818
run: |

.github/workflows/ci.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,26 +57,17 @@ jobs:
5757
arch: x86
5858
moi_test_modules: 'Test;Utilities;Benchmarks'
5959
steps:
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v4
6161
- uses: julia-actions/setup-julia@v1
6262
with:
6363
version: ${{ matrix.version }}
6464
arch: ${{ matrix.arch }}
65-
- uses: actions/cache@v1
66-
env:
67-
cache-name: cache-artifacts
68-
with:
69-
path: ~/.julia/artifacts
70-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
71-
restore-keys: |
72-
${{ runner.os }}-test-${{ env.cache-name }}-
73-
${{ runner.os }}-test-
74-
${{ runner.os }}-
65+
- uses: julia-actions/cache@v1
7566
- uses: julia-actions/julia-buildpkg@v1
7667
- uses: julia-actions/julia-runtest@v1
7768
env:
7869
MOI_TEST_MODULES: ${{ matrix.moi_test_modules }}
7970
- uses: julia-actions/julia-processcoverage@v1
80-
- uses: codecov/codecov-action@v1
71+
- uses: codecov/codecov-action@v3
8172
with:
8273
file: lcov.info

.github/workflows/doc_cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout gh-pages branch
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
with:
1414
ref: gh-pages
1515
- name: Delete preview and history + push changes

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- uses: julia-actions/setup-julia@latest
1414
with:
1515
# Build documentation on Julia 1.9

.github/workflows/format_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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: |

0 commit comments

Comments
 (0)