Skip to content

Commit

Permalink
Bump GitHub Actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Jun 2, 2024
1 parent 48b1071 commit 13d2535
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
if: matrix.target != 'wasm32-unknown-unknown' && matrix.target != 'x86_64-unknown-freebsd'

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: target/${{ matrix.target }}/release/genact${{ env.EXE }}
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
if: startsWith(github.ref_name, 'v') && github.ref_type == 'tag' && matrix.target != 'wasm32-unknown-unknown'

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
Expand All @@ -153,19 +153,19 @@ jobs:
uses: actions/checkout@v2

- name: Download artifact aarch64-unknown-linux-musl
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: aarch64-unknown-linux-musl
path: target/aarch64-unknown-linux-musl/release

- name: Download artifact x86_64-unknown-linux-musl
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: x86_64-unknown-linux-musl
path: target/x86_64-unknown-linux-musl/release

- name: Download artifact armv7-unknown-linux-musleabihf
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: armv7-unknown-linux-musleabihf
path: target/armv7-unknown-linux-musleabihf/release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 13d2535

Please sign in to comment.