Skip to content

Commit c19e317

Browse files
committed
Update GitHub action versions
1 parent b39ef35 commit c19e317

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

.github/workflows/aot.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
Python ${{ matrix.python-version }}
3030
${{ matrix.os }} ${{ matrix.architecture }}
3131
steps:
32-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@v5
3333
- name: Setup python
34-
uses: actions/setup-python@v1
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
architecture: ${{ matrix.architecture }}
@@ -41,13 +41,15 @@ jobs:
4141
run: sudo apt-get install python2.7-dev
4242
if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }}
4343
- name: Setup julia
44-
uses: julia-actions/setup-julia@v1
44+
uses: julia-actions/setup-julia@v2
4545
with:
4646
version: ${{ matrix.julia-version }}
4747
arch: ${{ matrix.architecture }}
4848
show-versioninfo: true
4949

50-
- run: julia -e 'using Pkg; pkg"add PackageCompiler@v1"'
50+
- name: Install PackageCompiler.jl
51+
run: using Pkg; Pkg.add("PackageCompiler", version="1")
52+
shell: julia {0}
5153

5254
- run: aot/compile.jl
5355
- run: aot/assert_has_pycall.jl

.github/workflows/conda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@ jobs:
3131
Conda
3232
${{ matrix.os }} ${{ matrix.architecture }}
3333
steps:
34-
- uses: actions/checkout@v1
34+
- uses: actions/checkout@v5
3535
- name: Install libpython2.7 for `find_libpython` test
3636
run: sudo apt-get install python2.7-dev
3737
if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }}
3838
- name: Setup julia
39-
uses: julia-actions/setup-julia@v1
39+
uses: julia-actions/setup-julia@v2
4040
with:
4141
version: ${{ matrix.julia-version }}
4242
arch: ${{ matrix.architecture }}
4343
show-versioninfo: true
4444
- uses: julia-actions/julia-buildpkg@v1
4545
- uses: julia-actions/julia-runtest@v1
4646
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v1
47+
- uses: codecov/codecov-action@v5
4848
with:
49-
file: ./lcov.info
49+
files: ./lcov.info
5050
flags: unittests
5151
name: codecov-umbrella

.github/workflows/system.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
Python ${{ matrix.python-version }}
5858
${{ matrix.os }} ${{ matrix.architecture }}
5959
steps:
60-
- uses: actions/checkout@v1
60+
- uses: actions/checkout@v5
6161
- name: Setup python
62-
uses: actions/setup-python@v1
62+
uses: actions/setup-python@v5
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565
architecture: ${{ matrix.architecture }}
@@ -74,7 +74,7 @@ jobs:
7474
run: sudo apt-get install python2.7-dev
7575
if: ${{ matrix.python-version != '2.7' && matrix.os == 'ubuntu-latest' }}
7676
- name: Setup julia
77-
uses: julia-actions/setup-julia@v1
77+
uses: julia-actions/setup-julia@v2
7878
with:
7979
version: ${{ matrix.julia-version }}
8080
arch: ${{ matrix.architecture }}
@@ -91,8 +91,8 @@ jobs:
9191
# https://docs.github.com/en/actions/learn-github-actions/contexts#runner-context
9292
_TMP_DIR: ${{ runner.temp }}
9393
- uses: julia-actions/julia-processcoverage@v1
94-
- uses: codecov/codecov-action@v1
94+
- uses: codecov/codecov-action@v5
9595
with:
96-
file: ./lcov.info
96+
files: ./lcov.info
9797
flags: unittests
9898
name: codecov-umbrella

0 commit comments

Comments
 (0)