Skip to content

Commit 10eb67b

Browse files
committed
Update ci to reduce some warnings
1 parent 2d2a2ba commit 10eb67b

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
elixir: ["1.19"]
2121
otp: ["28"]
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- uses: erlef/setup-beam@v1
2525
with:
2626
otp-version: ${{ matrix.otp }}
2727
elixir-version: ${{ matrix.elixir }}
28-
- uses: actions/cache@v4
28+
- uses: actions/cache@v5
2929
with:
3030
path: deps
3131
key: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_${{ hashFiles('**/mix.lock') }}
@@ -63,7 +63,7 @@ jobs:
6363
elixir: "1.19"
6464

6565
steps:
66-
- uses: actions/checkout@v4
66+
- uses: actions/checkout@v6
6767
- uses: erlef/setup-beam@v1
6868
with:
6969
otp-version: ${{ matrix.otp }}
@@ -74,7 +74,7 @@ jobs:
7474
with:
7575
arch: x64
7676

77-
- uses: actions/cache@v4
77+
- uses: actions/cache@v5
7878
with:
7979
path: deps
8080
key: ${{ matrix.os }}-otp_${{ matrix.otp }}-elixir_${{ matrix.elixir }}-mix_${{ hashFiles('**/mix.lock') }}

.github/workflows/linux-precompile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: Linux armv7l - OTP ${{ matrix.job.otp }} - Elixir ${{ matrix.job.elixir }}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535

3636
- name: Install system dependecies
3737
run: |
@@ -96,7 +96,7 @@ jobs:
9696
name: Linux ${{ matrix.arch }} - OTP ${{ matrix.job.otp }} - Elixir ${{ matrix.job.elixir }}
9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v6
100100

101101
- name: Install system dependecies
102102
run: |

.github/workflows/macos-precompile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
name: Mac ${{ matrix.arch }} - OTP ${{ matrix.job.otp }} - Elixir ${{ matrix.job.elixir }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Install asdf
3434
uses: asdf-vm/actions/setup@v4
3535

3636
- name: Cache asdf
3737
id: asdf-cache
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.asdf
4141
key: asdf-${{ runner.os }}-build-${{ matrix.job.otp }}-${{ matrix.job.elixir }}

.github/workflows/windows-precompile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Windows ${{ matrix.arch }} - OTP ${{ matrix.job.otp }} - Elixir ${{ matrix.job.elixir }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030

3131
- uses: erlef/setup-beam@v1
3232
with:

0 commit comments

Comments
 (0)