diff --git a/.github/workflows/prerelease-artifacts.yml b/.github/workflows/prerelease-artifacts.yml index 5c1564d..ed8e96e 100644 --- a/.github/workflows/prerelease-artifacts.yml +++ b/.github/workflows/prerelease-artifacts.yml @@ -119,7 +119,7 @@ jobs: Compress-Archive -Path "dist/crosspack.exe" -DestinationPath "dist/crosspack-${env:RELEASE_TAG}-${{ matrix.target }}.zip" -Force - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: crosspack-${{ env.RELEASE_TAG }}-${{ matrix.target }} path: dist/crosspack-${{ env.RELEASE_TAG }}-${{ matrix.target }}.${{ matrix.archive_ext }} @@ -135,7 +135,7 @@ jobs: steps: - name: Download packaged artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: crosspack-${{ env.RELEASE_TAG }}-* merge-multiple: true diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index 2b89e9b..ac8ce87 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -102,7 +102,7 @@ jobs: Compress-Archive -Path "dist/crosspack.exe" -DestinationPath "dist/crosspack-${env:RELEASE_TAG}-${{ matrix.target }}.zip" -Force - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: crosspack-${{ env.RELEASE_TAG }}-${{ matrix.target }} path: dist/crosspack-${{ env.RELEASE_TAG }}-${{ matrix.target }}.${{ matrix.archive_ext }} @@ -116,7 +116,7 @@ jobs: steps: - name: Download packaged artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: crosspack-${{ env.RELEASE_TAG }}-* merge-multiple: true diff --git a/.github/workflows/release-please-cargo-lock.yml b/.github/workflows/release-please-cargo-lock.yml index 491a9e9..b851f99 100644 --- a/.github/workflows/release-please-cargo-lock.yml +++ b/.github/workflows/release-please-cargo-lock.yml @@ -14,7 +14,7 @@ jobs: if: startsWith(github.head_ref, 'release-please--') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 943414a..ff2177d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,7 +24,7 @@ jobs: repositories: ${{ github.event.repository.name }} - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ steps.app-token.outputs.token }}