diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5e30f74fd..662fba2926 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout ARC - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: path: ARC diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1285713662..58e8407669 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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 diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index ae66a06ed5..9b0c0088ac 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -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 diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index c6bc80e4f2..fd152a6565 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -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 diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index bc1fce176d..b9740e1639 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -11,6 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/labeler@v2 + - uses: actions/labeler@v6 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/update-cache.yml b/.github/workflows/update-cache.yml index 23e0f40165..5df71c0a97 100644 --- a/.github/workflows/update-cache.yml +++ b/.github/workflows/update-cache.yml @@ -19,12 +19,12 @@ 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 @@ -32,7 +32,7 @@ jobs: ${{ 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 @@ -42,7 +42,7 @@ 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 @@ -50,7 +50,7 @@ jobs: ${{ 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 @@ -60,7 +60,7 @@ 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 @@ -68,7 +68,7 @@ jobs: ${{ 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