Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
Update actions used in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bytedream committed Jan 30, 2024
1 parent a2464ba commit 5d68f03
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Cargo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -42,21 +42,21 @@ jobs:
run: cross build --release --no-default-features --features openssl-tls-static --target ${{ matrix.toolchain }}

- name: Upload binary artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crunchy-cli-linux-${{ matrix.arch }}
path: ./target/${{ matrix.toolchain }}/release/crunchy-cli
if-no-files-found: error

- name: Upload manpages artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: manpages
path: ./target/${{ matrix.toolchain }}/release/manpages
if-no-files-found: error

- name: Upload completions artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: completions
path: ./target/${{ matrix.toolchain }}/release/completions
Expand All @@ -80,7 +80,7 @@ jobs:
uses: actions/checkout@v4

- name: Cargo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -99,7 +99,7 @@ jobs:
run: cargo build --release --target ${{ matrix.toolchain }}

- name: Upload binary artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crunchy-cli-darwin-${{ matrix.arch }}
path: ./target/${{ matrix.toolchain }}/release/crunchy-cli
Expand All @@ -112,7 +112,7 @@ jobs:
uses: actions/checkout@v4

- name: Cargo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
Expand All @@ -133,7 +133,7 @@ jobs:
run: cargo build --release --target x86_64-pc-windows-gnu

- name: Upload binary artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: crunchy-cli-windows-x86_64
path: ./target/x86_64-pc-windows-gnu/release/crunchy-cli.exe
Expand Down

0 comments on commit 5d68f03

Please sign in to comment.