Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): pin actions/upload-artifact action to a8a3f3a #238

Merged
merged 2 commits into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Upload the build artifact
if: github.event_name == 'push'
# Do not use v4 until merge behavior can be rebuilt
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
with:
# By uploading to the same artifact we can download all of the packages
# and upload them all to anaconda.org in a single job
Expand All @@ -100,7 +100,7 @@ jobs:
with:
fetch-depth: 0
- name: Download the build artifacts
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4
uses: actions/download-artifact@v3
with:
name: package-${{ github.sha }}
path: conda-bld
Expand Down
Loading