Skip to content

Commit

Permalink
bump checkout/upload action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfl0wer committed May 15, 2024
1 parent c30a813 commit 509f86c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cross-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

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

- name: Install cross
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
mv ./target/${{ matrix.target }}/release/stimmgabel ./artifacts/stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}
path: ./artifacts/stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}
Expand All @@ -49,7 +49,7 @@ jobs:

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

- name: Install Rust
run: |
Expand All @@ -66,7 +66,7 @@ jobs:
move .\target\${{ matrix.target }}\release\stimmgabel.exe .\artifacts\stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}.exe
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}.exe
path: .\artifacts\stimmgabel-${{ matrix.target }}-${{ github.event.inputs.tag }}.exe
Expand All @@ -82,7 +82,7 @@ jobs:

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

- name: Build
run: |
Expand Down

0 comments on commit 509f86c

Please sign in to comment.