Skip to content

Commit fe86368

Browse files
committed
Bump os in workflows
1 parent 56430aa commit fe86368

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
- elixir_version: 1.13.4
2323
otp_version: 24.3.4
2424
steps:
25-
- uses: actions/checkout@v3
26-
- uses: actions/cache@v3
25+
- uses: actions/checkout@v4
26+
- uses: actions/cache@v4
2727
with:
2828
path: |
2929
deps
3030
_build
3131
key: ${{ runner.os }}-mix-${{ matrix.elixir_version }}-${{matrix.otp_version}}-${{ hashFiles('**/mix.lock') }}
3232
restore-keys: |
3333
${{ runner.os }}-mix-${{ matrix.elixir_version }}-${{matrix.otp_version}}-
34-
- uses: actions/cache@v3
34+
- uses: actions/cache@v4
3535
with:
3636
path: |
3737
~/.cargo/bin/

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
deploy:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

23-
- uses: actions/cache@v3
23+
- uses: actions/cache@v4
2424
with:
2525
path: |
2626
deps
@@ -29,7 +29,7 @@ jobs:
2929
restore-keys: |
3030
${{ runner.os }}-mix-
3131
32-
- uses: actions/cache@v3
32+
- uses: actions/cache@v4
3333
with:
3434
path: |
3535
~/.cargo/bin/

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
matrix:
2222
nif: ["2.15", "2.16"]
2323
job:
24-
- { target: aarch64-apple-darwin, os: macos-12 }
25-
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, use-cross: true }
26-
- { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, use-cross: true }
27-
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-20.04, use-cross: true }
28-
- { target: riscv64gc-unknown-linux-gnu, os: ubuntu-20.04, use-cross: true }
29-
- { target: x86_64-apple-darwin, os: macos-12 }
24+
- { target: aarch64-apple-darwin, os: macos-13 }
25+
- { target: aarch64-unknown-linux-gnu, os: ubuntu-22.04, use-cross: true }
26+
- { target: aarch64-unknown-linux-musl, os: ubuntu-22.04, use-cross: true }
27+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-22.04, use-cross: true }
28+
- { target: riscv64gc-unknown-linux-gnu, os: ubuntu-22.04, use-cross: true }
29+
- { target: x86_64-apple-darwin, os: macos-13 }
3030
- { target: x86_64-pc-windows-gnu, os: windows-2019 }
3131
- { target: x86_64-pc-windows-msvc, os: windows-2019 }
32-
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04 }
33-
- { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, use-cross: true }
32+
- { target: x86_64-unknown-linux-gnu, os: ubuntu-22.04 }
33+
- { target: x86_64-unknown-linux-musl, os: ubuntu-22.04, use-cross: true }
3434

3535
steps:
3636
- name: Checkout source code
@@ -59,7 +59,7 @@ jobs:
5959
use-cross: ${{ matrix.job.use-cross }}
6060

6161
- name: Artifact upload
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: ${{ steps.build-crate.outputs.file-name }}
6565
path: ${{ steps.build-crate.outputs.file-path }}

.github/workflows/rust-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- native/ex_tokenizers/Cargo.toml
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

24-
- uses: actions/cache@v3
24+
- uses: actions/cache@v4
2525
with:
2626
path: |
2727
~/.cargo/bin/
@@ -43,4 +43,4 @@ jobs:
4343
run: cargo fmt --manifest-path=${{ matrix.manifest }} --all -- --check
4444

4545
- name: run clippy
46-
run: cargo clippy --manifest-path=${{ matrix.manifest }} -- -Dwarnings
46+
run: cargo clippy --manifest-path=${{ matrix.manifest }} -- -Dwarnings

0 commit comments

Comments
 (0)