Skip to content

Commit 957ff8e

Browse files
authored
github action dependency upgrades
merges #516 refs #515
1 parent 6422d20 commit 957ff8e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ai-revision.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
shell: bash --login {0}
4141
steps:
4242
- name: Checkout Repo
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
with:
4545
ref: ${{ inputs.branch }}
4646
- name: Install environment
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: '3.11'
5050
- name: Install Manubot AI revision dependencies

.github/workflows/manubot.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
shell: bash --login {0}
5151
steps:
5252
- name: Checkout Repository
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454
with:
5555
# fetch entire commit history to support get_rootstock_commit
5656
fetch-depth: 0
@@ -72,14 +72,14 @@ jobs:
7272
echo "DEFAULT_BRANCH_REF=refs/heads/$DEFAULT_BRANCH" >> $GITHUB_ENV
7373
echo "DEFAULT_BRANCH=$DEFAULT_BRANCH"
7474
- name: Cache
75-
uses: actions/cache@v3
75+
uses: actions/cache@v4
7676
with:
7777
path: ci/cache
7878
key: ci-cache-${{ github.ref }}
7979
restore-keys: |
8080
ci-cache-${{ env.DEFAULT_BRANCH_REF }}
8181
- name: Install Environment
82-
uses: conda-incubator/setup-miniconda@v2
82+
uses: conda-incubator/setup-miniconda@v3
8383
with:
8484
activate-environment: manubot
8585
environment-file: build/environment.yml
@@ -93,7 +93,7 @@ jobs:
9393
- name: Build Manuscript
9494
run: bash build/build.sh
9595
- name: Upload Artifacts
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9797
with:
9898
name: manuscript-${{ github.run_id }}-${{ env.TRIGGERING_SHA_7 }}
9999
path: output

0 commit comments

Comments
 (0)