Skip to content

Commit

Permalink
Remove upload-artifact pinning (#996)
Browse files Browse the repository at this point in the history
**Description of the Change:**

Upload artifact 4.3.6 removes the issue introduced in 4.3.5.
actions/upload-artifact#594
  • Loading branch information
rmoyard authored Aug 6, 2024
1 parent dbc6376 commit 657036d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel-linux-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
bash /catalyst/.github/workflows/scripts/linux_arm64/rh8/build_catalyst.sh $GCC_VERSION ${{ matrix.python_version.official }} ${{ matrix.python_version.subversion }} ${{ matrix.python_version.package }} ${{ matrix.python_version.alternative }}
- name: Upload Wheel Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: catalyst-linux_arm64-wheel-py-${{ matrix.python_version.official}}.zip
path: wheel/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel-macos-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
delocate-wheel --require-archs=arm64 -w ./wheel -v dist/*.whl --ignore-missing-dependencies -vv
- name: Upload Wheel Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: catalyst-macos_arm64-wheel-py-${{ matrix.python_version }}.zip
path: wheel/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wheel-macos-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
delocate-wheel --require-archs=x86_64 -w ./wheel -v dist/*.whl --ignore-missing-dependencies -vv
- name: Upload Wheel Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: catalyst-macos_x86_64-wheel-py-${{ matrix.python_version }}.zip
path: wheel/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-catalyst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Upload Catalyst-Runtime Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: runtime-build-${{ matrix.compiler }}
path: |
Expand All @@ -78,7 +78,7 @@ jobs:
retention-days: 1

- name: Upload OQC-Runtime Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: oqc-build-${{ matrix.compiler }}
path: |
Expand Down Expand Up @@ -378,7 +378,7 @@ jobs:
make dialects
- name: Upload Quantum Build Artifact
uses: actions/upload-artifact@v4.3.4
uses: actions/upload-artifact@v4
with:
name: quantum-build-${{ matrix.compiler }}
path: |
Expand Down

0 comments on commit 657036d

Please sign in to comment.