Skip to content

Commit

Permalink
Lock on a specific version of the artifact actions
Browse files Browse the repository at this point in the history
We were using different versions for upload and download. This may be
causing the problems we're seeing in the release-kernel action.
  • Loading branch information
brunokc committed Feb 9, 2024
1 parent 0e878e9 commit 3ec8f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pve-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
echo "version=$(ls abi-[0-9]* | sed 's/abi/pve-kernel/g' | sed 's/-pve//g')" >> $GITHUB_OUTPUT
- name: Upload build artifacts
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
if: steps.docker-build.outputs.status == 'success' && inputs.upload-artifacts
with:
name: ${{ steps.kernel-version.outputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo "TOKEN=${TOK}" > $GITHUB_ENV
- name: Download build artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact-name }}
path: ./assets
Expand Down

0 comments on commit 3ec8f8d

Please sign in to comment.