Skip to content

Commit 86fb30c

Browse files
committed
CI: Upgrade actions to fix deprecation warnings
1 parent a5207a4 commit 86fb30c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-22.04
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Install Rust
2323
uses: dtolnay/rust-toolchain@00b49be78f40fba4e87296b2ead62868750bdd83 # stable branch
2424
- name: Run cargo fmt
@@ -47,15 +47,15 @@ jobs:
4747
- name: Install Rust
4848
uses: dtolnay/rust-toolchain@00b49be78f40fba4e87296b2ead62868750bdd83 # stable branch
4949
- name: Cargo Cache
50-
uses: actions/cache@v3
50+
uses: actions/cache@v4
5151
with:
5252
path: |
5353
~/.cargo/registry
5454
~/.cargo/git
5555
key: ${{ runner.os }}-${{ matrix.target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
5656
restore-keys: |
5757
${{ runner.os }}-${{ matrix.target }}-cargo-
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959
- name: Build
6060
run: cargo build --release --locked
6161
- name: Run tests
@@ -70,13 +70,13 @@ jobs:
7070
cp target/release/krapslog.exe krapslog-${{ matrix.target }}.exe
7171
- name: Upload Linux and macOS Binaries
7272
if: matrix.build == 'linux' || matrix.build == 'macos'
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: krapslog-${{ matrix.target }}
7676
path: krapslog-${{ matrix.target }}
7777
- name: Upload Windows Binaries
7878
if: matrix.build == 'windows'
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@v4
8080
with:
8181
name: krapslog-${{ matrix.target }}.exe
8282
path: krapslog-${{ matrix.target }}.exe
@@ -87,7 +87,7 @@ jobs:
8787
if: startsWith(github.ref, 'refs/tags/')
8888
needs: [build]
8989
steps:
90-
- uses: actions/download-artifact@v3
90+
- uses: actions/download-artifact@v4
9191
with:
9292
path: raw-artifacts
9393
- name: Prepare binary archives

.github/workflows/publish-crate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Publish crate
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Install Rust
1515
uses: dtolnay/rust-toolchain@984d158d699777abbaa79de23de3134e60c187fa # stable branch
1616
- run: |

0 commit comments

Comments
 (0)