Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout ARC
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: ARC

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
swap-storage: true

- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6

- name: Set up Buildx
uses: docker/setup-buildx-action@v3.11.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# ── clone ARC repo ───────────────────────────────────────────
- name: Checkout ARC
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ReactionMechanismGenerator/ARC
path: ARC
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/labeler@v2
- uses: actions/labeler@v6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
14 changes: 7 additions & 7 deletions .github/workflows/update-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ jobs:
steps:
# ────────── source repo ──────────
- name: Checkout ARC
uses: actions/checkout@v4
uses: actions/checkout@v6

# ────────── AutoTST ──────────
- name: Cache AutoTST
id: cache-autotst
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: AutoTST
key: ${{ runner.os }}-autotst-main
restore-keys: |
${{ runner.os }}-autotst-
- name: Checkout AutoTST
if: steps.cache-autotst.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ReactionMechanismGenerator/AutoTST
path: AutoTST
Expand All @@ -42,15 +42,15 @@ jobs:
# ────────── TS‑GCN ──────────
- name: Cache TS-GCN
id: cache-tsgcn
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: TS-GCN
key: ${{ runner.os }}-tsgcn-main
restore-keys: |
${{ runner.os }}-tsgcn-
- name: Checkout TS-GCN
if: steps.cache-tsgcn.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ReactionMechanismGenerator/TS-GCN
path: TS-GCN
Expand All @@ -60,15 +60,15 @@ jobs:
# ────────── KinBot ──────────
- name: Cache KinBot
id: cache-kinbot
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: KinBot
key: ${{ runner.os }}-kinbot-2.0.6
restore-keys: |
${{ runner.os }}-kinbot-
- name: Checkout KinBot 2.0.6
if: steps.cache-kinbot.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: zadorlab/KinBot
path: KinBot
Expand Down
Loading