diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 98870c3..45942ac 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5d3bb01..1e44d98 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 }} @@ -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 }} @@ -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: |