Skip to content

Commit fbcfa07

Browse files
dependabot[bot]calvinp0
authored andcommitted
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/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](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Bump actions/checkout from 3 to 6 Bumps [actions/checkout](https://github.com/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](actions/checkout@v3...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Bump docker/setup-buildx-action from 3.11.1 to 4.0.0 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 3.11.1 to 4.0.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.11.1...v4.0.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Bump docker/build-push-action from 6.18.0 to 7.0.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.18.0 to 7.0.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6.18.0...v7.0.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Verbosity Change it so we always docker build for main branch when PR merges
1 parent 94bb568 commit fbcfa07

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout ARC
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
path: ARC
2424

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v6
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/docker_build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
push:
77
branches:
88
- main
9-
paths:
10-
- "Dockerfile"
11-
- ".github/workflows/docker_build.yml"
129
pull_request:
1310
branches:
1411
- main
@@ -18,6 +15,9 @@ on:
1815
types: [opened, synchronize, reopened, ready_for_review]
1916
#workflow_dispatch: # Add this line to enable manual trigger
2017

18+
env:
19+
BUILDKIT_PROGRESS: plain
20+
2121
jobs:
2222
build:
2323
runs-on: ubuntu-latest
@@ -34,16 +34,16 @@ jobs:
3434
swap-storage: true
3535

3636
- name: Checkout
37-
uses: actions/checkout@v5.0.0
37+
uses: actions/checkout@v6
3838

3939
- name: Set up Buildx
40-
uses: docker/setup-buildx-action@v3.11.1
40+
uses: docker/setup-buildx-action@v4.0.0
4141

4242
# ----- PR and non-main branch steps -----
4343
# For PRs: Build image but do not push and run smoke tests
4444
- name: Build Docker Image (No Push)
4545
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref != 'refs/heads/main')
46-
uses: docker/build-push-action@v6.18.0
46+
uses: docker/build-push-action@v7.0.0
4747
with:
4848
context: .
4949
file: ./Dockerfile
@@ -63,7 +63,7 @@ jobs:
6363
# For pushes to main: Build, run smoke tests, and push to Docker Hub
6464
- name: Build test stage (main)
6565
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
66-
uses: docker/build-push-action@v6.18.0
66+
uses: docker/build-push-action@v7.0.0
6767
with:
6868
context: .
6969
file: ./Dockerfile
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Build final and push (main)
8989
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
90-
uses: docker/build-push-action@v6.18.0
90+
uses: docker/build-push-action@v7.0.0
9191
with:
9292
context: .
9393
file: ./Dockerfile

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# ── clone ARC repo ───────────────────────────────────────────
1616
- name: Checkout ARC
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
repository: ReactionMechanismGenerator/ARC
2020
path: ARC

.github/workflows/update-cache.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ jobs:
1919
steps:
2020
# ────────── source repo ──────────
2121
- name: Checkout ARC
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323

2424
# ────────── AutoTST ──────────
2525
- name: Cache AutoTST
2626
id: cache-autotst
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
path: AutoTST
3030
key: ${{ runner.os }}-autotst-main
3131
restore-keys: |
3232
${{ runner.os }}-autotst-
3333
- name: Checkout AutoTST
3434
if: steps.cache-autotst.outputs.cache-hit != 'true'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v6
3636
with:
3737
repository: ReactionMechanismGenerator/AutoTST
3838
path: AutoTST
@@ -42,15 +42,15 @@ jobs:
4242
# ────────── TS‑GCN ──────────
4343
- name: Cache TS-GCN
4444
id: cache-tsgcn
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: TS-GCN
4848
key: ${{ runner.os }}-tsgcn-main
4949
restore-keys: |
5050
${{ runner.os }}-tsgcn-
5151
- name: Checkout TS-GCN
5252
if: steps.cache-tsgcn.outputs.cache-hit != 'true'
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454
with:
5555
repository: ReactionMechanismGenerator/TS-GCN
5656
path: TS-GCN
@@ -60,15 +60,15 @@ jobs:
6060
# ────────── KinBot ──────────
6161
- name: Cache KinBot
6262
id: cache-kinbot
63-
uses: actions/cache@v4
63+
uses: actions/cache@v5
6464
with:
6565
path: KinBot
6666
key: ${{ runner.os }}-kinbot-2.0.6
6767
restore-keys: |
6868
${{ runner.os }}-kinbot-
6969
- name: Checkout KinBot 2.0.6
7070
if: steps.cache-kinbot.outputs.cache-hit != 'true'
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v6
7272
with:
7373
repository: zadorlab/KinBot
7474
path: KinBot

0 commit comments

Comments
 (0)