diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index eb6f74c..7eabe24 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Test fetch run: bazel fetch //... @@ -28,7 +28,7 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Test run: bazel test //... @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create release archive and notes # Set by GH actions, see @@ -49,7 +49,7 @@ jobs: run: ./ci/package.sh "${{ github.ref_name }}" - name: Archive release artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: release path: release/* @@ -61,7 +61,7 @@ jobs: needs: pkg steps: - name: Download release artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: release