From f1e234201654bfec7f2ad6aef393caaec7f4aa49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 21:03:04 +0000 Subject: [PATCH] build(deps): bump actions/download-artifact in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: Colin Walters --- .github/workflows/bootc.yml | 4 ++-- .github/workflows/rust.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/bootc.yml b/.github/workflows/bootc.yml index 41ce5bb2..65548679 100644 --- a/.github/workflows/bootc.yml +++ b/.github/workflows/bootc.yml @@ -41,7 +41,7 @@ jobs: - name: Build run: cd bootc && make test-bin-archive - name: Upload binary - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: bootc-c9s.tar.zst path: bootc/target/bootc.tar.zst @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4.1.7 with: name: bootc-c9s.tar.zst - name: Install diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 822a6498..6c7a988b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -57,7 +57,7 @@ jobs: - name: Build run: cargo build --release --features=internal-testing-api - name: Upload binary - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ostree-ext-cli path: target/release/ostree-ext-cli @@ -105,7 +105,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Download ostree-ext-cli - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ostree-ext-cli - name: Install @@ -121,7 +121,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Download ostree-ext-cli - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ostree-ext-cli - name: Install @@ -139,7 +139,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Download - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ostree-ext-cli - name: Install @@ -159,7 +159,7 @@ jobs: repository: coreos/coreos-layering-examples path: coreos-layering-examples - name: Download - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4.1.7 with: name: ostree-ext-cli - name: Integration tests