Skip to content

Commit

Permalink
Merge pull request #83 from jfrimmel/update-ci
Browse files Browse the repository at this point in the history
Update all other actions used
  • Loading branch information
jfrimmel committed Sep 17, 2024
2 parents 11afe79 + 680efeb commit 86d07c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Build
run: cargo build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
echo "name=$ARCHIVE_NAME.zip" >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ steps.package.outputs.name }}
path: ${{ steps.package.outputs.file }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
echo "file=$TAR_FILE.tar.gz" >> $GITHUB_OUTPUT
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ steps.package.outputs.name }}
path: ${{ steps.package.outputs.file }}
Expand Down Expand Up @@ -131,12 +131,12 @@ jobs:
echo "tag=$VERSION" >> $GITHUB_OUTPUT
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: ./binaries

- name: Create a release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
name: v${{ steps.tagName.outputs.tag }}
files: |
Expand Down

0 comments on commit 86d07c2

Please sign in to comment.