From f78ffac26a568b556e768bcc9431009ae4d7f872 Mon Sep 17 00:00:00 2001 From: Daniel Himmelstein Date: Wed, 31 Jul 2024 14:27:07 -0400 Subject: [PATCH] github action dependency upgrades merges https://github.com/manubot/rootstock/pull/516 refs https://github.com/manubot/rootstock/issues/515 --- .github/workflows/ai-revision.yaml | 4 ++-- .github/workflows/manubot.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ai-revision.yaml b/.github/workflows/ai-revision.yaml index bd369354..c15bf8ff 100644 --- a/.github/workflows/ai-revision.yaml +++ b/.github/workflows/ai-revision.yaml @@ -40,11 +40,11 @@ jobs: shell: bash --login {0} steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ inputs.branch }} - name: Install environment - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.11' - name: Install Manubot AI revision dependencies diff --git a/.github/workflows/manubot.yaml b/.github/workflows/manubot.yaml index 1ef5e981..196030a8 100644 --- a/.github/workflows/manubot.yaml +++ b/.github/workflows/manubot.yaml @@ -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 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 with: name: manuscript-${{ github.run_id }}-${{ env.TRIGGERING_SHA_7 }} path: output