diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b620ac5..714511a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: targets: aarch64-apple-darwin - uses: Swatinem/rust-cache@v2 - run: cargo build --release --target aarch64-apple-darwin - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: aarch64-apple-darwin path: target/aarch64-apple-darwin/release/pgdo @@ -32,7 +32,7 @@ jobs: targets: x86_64-apple-darwin - uses: Swatinem/rust-cache@v2 - run: cargo build --release --target x86_64-apple-darwin - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: x86_64-apple-darwin path: target/x86_64-apple-darwin/release/pgdo @@ -43,11 +43,11 @@ jobs: runs-on: macos-latest needs: [aarch64-apple-darwin, x86_64-apple-darwin] steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: x86_64-apple-darwin path: pgdo-x86_64-apple-darwin - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: aarch64-apple-darwin path: pgdo-aarch64-apple-darwin @@ -57,7 +57,7 @@ jobs: -output pgdo-apple-darwin \ pgdo-x86_64-apple-darwin/pgdo \ pgdo-aarch64-apple-darwin/pgdo - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: apple-darwin path: pgdo-apple-darwin @@ -73,7 +73,7 @@ jobs: targets: x86_64-unknown-linux-musl - uses: Swatinem/rust-cache@v2 - run: cargo build --release --target x86_64-unknown-linux-musl - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: linux path: target/x86_64-unknown-linux-musl/release/pgdo @@ -84,11 +84,11 @@ jobs: needs: [macos-universal, build-linux] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: linux path: linux - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: name: apple-darwin - name: Rename executables