Skip to content

Commit 4d508bc

Browse files
authored
Merge pull request #2173 from skyleaworlder/update-ci
update: actions node 12 => node 16
2 parents e33de0c + 74d109a commit 4d508bc

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/Downstream.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
- {user: SciML, repo: OperatorLearning.jl, group: All}
3131
if: contains(github.event.pull_request.labels.*.name, 'run downstream test')
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v3
3434
- uses: julia-actions/setup-julia@v1
3535
with:
3636
version: ${{ matrix.julia-version }}
3737
arch: x64
3838
- uses: julia-actions/julia-buildpkg@latest
3939
- name: Clone Downstream
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141
with:
4242
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
4343
path: downstream

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
version: '1'
3333
arch: x64
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
- uses: julia-actions/setup-julia@v1
3737
with:
3838
version: ${{ matrix.version }}
3939
arch: ${{ matrix.arch }}
40-
- uses: actions/cache@v1
40+
- uses: actions/cache@v3
4141
env:
4242
cache-name: cache-artifacts
4343
with:
@@ -59,7 +59,7 @@ jobs:
5959
if: contains(fromJson('["1", "1.6"]'), matrix.version) && matrix.os == 'ubuntu-latest'
6060
- uses: julia-actions/julia-processcoverage@v1
6161
if: contains(fromJson('["1", "1.6"]'), matrix.version) && matrix.os == 'ubuntu-latest'
62-
- uses: codecov/codecov-action@v2
62+
- uses: codecov/codecov-action@v3
6363
if: contains(fromJson('["1", "1.6"]'), matrix.version) && matrix.os == 'ubuntu-latest'
6464
with:
6565
file: lcov.info
@@ -68,7 +68,7 @@ jobs:
6868
name: Documentation
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@v2
71+
- uses: actions/checkout@v3
7272
- uses: julia-actions/setup-julia@v1
7373
with:
7474
version: '1.6'

.github/workflows/clean_preview.yml

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

0 commit comments

Comments
 (0)