From bef0ae0c01ffa3f7d4faf9f18dd045a5899b2bf0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:30:02 +0000 Subject: [PATCH] Bump the core-actions group with 3 updates Bumps the core-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/labeler](https://github.com/actions/labeler) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v6) Updates `actions/labeler` from 2 to 6 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v2...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: core-actions - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: core-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: core-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/docker_build.yml | 2 +- .github/workflows/gh-pages.yml | 2 +- .github/workflows/labeler.yml | 2 +- .github/workflows/update-cache.yml | 14 +++++++------- 6 files changed, 12 insertions(+), 12 deletions(-) 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