ci: bump download-artifact/upload-artifact versions
This commit is contained in:
parent
8059de329c
commit
9778a05264
2 changed files with 4 additions and 4 deletions
6
.github/workflows/build-common.yml
vendored
6
.github/workflows/build-common.yml
vendored
|
|
@ -52,7 +52,7 @@ jobs:
|
|||
echo "files=$files" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Upload build directory
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: build-temp-${{ github.sha }}
|
||||
path: build/
|
||||
|
|
@ -67,12 +67,12 @@ jobs:
|
|||
file: ${{ fromJson(needs.build.outputs.files) }}
|
||||
steps:
|
||||
- name: Download build
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: build-temp-${{ github.sha }}
|
||||
|
||||
- name: Upload ${{ matrix.file }}
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
name: ${{ matrix.file }}
|
||||
path: ${{ matrix.file }}
|
||||
|
|
|
|||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
python-version: "3.11"
|
||||
|
||||
- name: Download build
|
||||
uses: actions/download-artifact@v4
|
||||
uses: actions/download-artifact@v8
|
||||
with:
|
||||
name: build-temp-${{ github.sha }}
|
||||
path: build
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue