-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
shell: bash --login {0} | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
# fetch entire commit history to support get_rootstock_commit | ||
fetch-depth: 0 | ||
|
@@ -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 | ||
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 commentThe reason will be displayed to describe this comment to others. Learn more. |
||
with: | ||
activate-environment: manubot | ||
environment-file: build/environment.yml | ||
|
@@ -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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. Here is the log output from the upload artifact step
Note that this step now outputs |
||
with: | ||
name: manuscript-${{ github.run_id }}-${{ env.TRIGGERING_SHA_7 }} | ||
path: output | ||
|
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