-
Notifications
You must be signed in to change notification settings - Fork 178
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
github action dependency upgrades on 2024-07-31 #516
Conversation
with: | ||
path: ci/cache | ||
key: ci-cache-${{ github.ref }} | ||
restore-keys: | | ||
ci-cache-${{ env.DEFAULT_BRANCH_REF }} | ||
- name: Install Environment | ||
uses: conda-incubator/setup-miniconda@v2 | ||
uses: conda-incubator/setup-miniconda@v3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -72,14 +72,14 @@ jobs: | |||
echo "DEFAULT_BRANCH_REF=refs/heads/$DEFAULT_BRANCH" >> $GITHUB_ENV | |||
echo "DEFAULT_BRANCH=$DEFAULT_BRANCH" | |||
- name: Cache | |||
uses: actions/cache@v3 | |||
uses: actions/cache@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
release notes at https://github.com/actions/cache/releases/tag/v4.0.0
@@ -93,7 +93,7 @@ jobs: | |||
- name: Build Manuscript | |||
run: bash build/build.sh | |||
- name: Upload Artifacts | |||
uses: actions/upload-artifact@v3 | |||
uses: actions/upload-artifact@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here is the log output from the upload artifact step
With the provided path, there will be 9 files uploaded
Artifact name is valid!
Root directory input is valid!
Beginning upload of artifact content to blob storage
Uploaded bytes 215686
Finished uploading artifact content to blob storage!
SHA256 hash of uploaded artifact zip is 470397e4848ba4fd526b226d5b9879e1553ae8e665f5dbb1b8e9b357e5375d94
Finalizing artifact upload
Artifact manuscript-10[18](https://github.com/manubot/rootstock/actions/runs/10185388467/job/28174854640#step:9:19)5388467-08f8521.zip successfully finalized. Artifact ID 1761448987
Artifact manuscript-10185388467-08f8521 has been successfully uploaded! Final size is [21](https://github.com/manubot/rootstock/actions/runs/10185388467/job/28174854640#step:9:22)5686 bytes. Artifact ID is 1761448987
Artifact download URL: https://github.com/manubot/rootstock/actions/runs/10185388467/artifacts/1761448987
Note that this step now outputs artifact-url
, which it did not in past. We possibly could now remove AppVeyor since GitHub Actions can presumably comment with the artifact link.
closes #515
Major version upgrades of dependent actions for node 20 support.