Skip to content

Commit

Permalink
ci: Bump version of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sgryjp committed Jan 21, 2025
1 parent a06a55a commit 26346d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .cspell/custom-dictionary.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
fnmatch
fsutil
hoge
msvc
multilib
safeish
strcspn
strspn
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup OS packages (Linux)
if: startsWith(matrix.os, 'ubuntu')
Expand All @@ -46,7 +46,7 @@ jobs:
sudo apt-get install -y build-essential gcc-multilib
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
Expand All @@ -68,14 +68,14 @@ jobs:

- name: Upload built artifact (Linux, mac)
if: ${{ !startsWith(matrix.os, 'windows') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pmv-${{ matrix.target }}
path: target/${{ matrix.target }}/release/pmv

- name: Upload built artifact (Windows)
if: startsWith(matrix.os, 'windows')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pmv-${{ matrix.target }}
path: target\${{ matrix.target }}\release\pmv.exe

0 comments on commit 26346d9

Please sign in to comment.