Skip to content
Open
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 @@ -33,7 +33,7 @@ jobs:
swap-storage: false

- name: Set up micromamba (arc_env)
uses: mamba-org/setup-micromamba@v3.1.0
uses: mamba-org/setup-micromamba@v3.2.1
with:
environment-name: arc_env
environment-file: ARC/environment.yml
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ jobs:
uses: actions/checkout@v6

- name: Set up Buildx
uses: docker/setup-buildx-action@v4.1.0
uses: docker/setup-buildx-action@v4.3.0

# ----- PR / manual-dispatch steps -----
# Build the image and run smoke tests, but do not push
- name: Build Docker Image (No Push)
if: ${{ !(github.event_name == 'schedule' || (github.event_name == 'push' && github.ref == 'refs/heads/main')) }}
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: .
file: ./Dockerfile
Expand All @@ -70,7 +70,7 @@ jobs:
# event at all, so scheduled runs built nothing and still reported success.
- name: Build image (publish path)
if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: .
file: ./Dockerfile
Expand All @@ -89,14 +89,14 @@ jobs:

- name: Login to Docker Hub
if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
uses: docker/login-action@v4.2.0
uses: docker/login-action@v4.6.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build final and push
if: ${{ github.event_name == 'schedule' || (github.event_name == 'push' && github.ref == 'refs/heads/main') }}
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: .
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

# ── rmg_env for Arkane/database availability ───────────────
- name: Set up micromamba (rmg_env)
uses: mamba-org/setup-micromamba@v3.1.0
uses: mamba-org/setup-micromamba@v3.2.1
with:
environment-name: rmg_env
create-args: >-
Expand All @@ -33,7 +33,7 @@ jobs:

# ── docs env (wrapper shell) ────────────────────────────────
- name: Set up micromamba (arc_env)
uses: mamba-org/setup-micromamba@v3.1.0
uses: mamba-org/setup-micromamba@v3.2.1
with:
environment-name: arc_env
environment-file: ARC/environment.yml
Expand Down
Loading