Skip to content

Commit aafeb5c

Browse files
authored
Update GitHub action versions (#184)
1 parent 052a5f4 commit aafeb5c

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- master
6-
- release-*
76
pull_request:
87
types: [opened, synchronize, reopened]
98
# needed to allow julia-actions/cache to delete old caches that it has created
@@ -33,18 +32,18 @@ jobs:
3332
os: ubuntu-latest
3433
arch: x86
3534
steps:
36-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3736
- uses: julia-actions/setup-julia@v2
3837
with:
3938
version: ${{ matrix.version }}
4039
arch: ${{ matrix.arch }}
41-
- uses: julia-actions/cache@v1
40+
- uses: julia-actions/cache@v2
4241
- uses: julia-actions/julia-buildpkg@v1
4342
- uses: julia-actions/julia-runtest@v1
4443
with:
4544
depwarn: error
4645
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v4
46+
- uses: codecov/codecov-action@v5
4847
with:
49-
file: lcov.info
48+
files: lcov.info
5049
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/format_check.yml

Lines changed: 2 additions & 2 deletions
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@v4
16+
- uses: actions/checkout@v6
1717
- name: Format check
1818
shell: julia --color=yes {0}
1919
run: |
2020
using Pkg
21-
Pkg.add(PackageSpec(name="JuliaFormatter", version="1"))
21+
Pkg.add(PackageSpec(name="JuliaFormatter", version="2"))
2222
using JuliaFormatter
2323
format("."; verbose = true)
2424
out = String(read(Cmd(`git diff`)))

0 commit comments

Comments
 (0)