From 56bfed577137ab90923e6f6e61ca1fe334a4235c Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 27 Mar 2024 23:53:31 +0000 Subject: [PATCH] workflows: update actions --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66338e0..717fa10 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: include: - container: debian7 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build Docker image run: docker build --tag ${{matrix.container}} . @@ -41,7 +41,7 @@ jobs: run: docker cp ${{github.sha}}:/home/linuxbrew/bootstrap-binaries . - name: Upload binaries to GitHub Actions - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Bootstrap binaries + name: bootstrap-${{matrix.binary}} path: bootstrap-binaries diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5316f3c..4b25cc3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,14 @@ jobs: GH_TOKEN: ${{github.token}} TAG: ${{github.event.inputs.tag}} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Download binaries from GitHub Actions - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: Bootstrap binaries + pattern: bootstrap-* path: bootstrap-binaries + merge-multiple: true - name: Push tag run: gh release create "$TAG" --generate-notes