Skip to content

Commit f225335

Browse files
Bump the third-party-actions group across 1 directory with 5 updates
Bumps the third-party-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba) | `2` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.0.0` | `7.1.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.5.0` | `4.1.0` | Updates `mamba-org/setup-micromamba` from 2 to 3 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](mamba-org/setup-micromamba@v2...v3) Updates `codecov/codecov-action` from 5 to 6 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `docker/build-push-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v7.0.0...v7.1.0) Updates `docker/login-action` from 3.5.0 to 4.1.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3.5.0...v4.1.0) --- updated-dependencies: - dependency-name: mamba-org/setup-micromamba dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: third-party-actions - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: third-party-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: third-party-actions - dependency-name: docker/build-push-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: third-party-actions - dependency-name: docker/login-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: third-party-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d7b20a3 commit f225335

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
swap-storage: true
3434

3535
- name: Set up micromamba (arc_env)
36-
uses: mamba-org/setup-micromamba@v2
36+
uses: mamba-org/setup-micromamba@v3
3737
with:
3838
environment-name: arc_env
3939
environment-file: ARC/environment.yml
@@ -116,7 +116,7 @@ jobs:
116116
pytest functional/ --cov --cov-append --cov-report=xml -ra -vv -n auto
117117
118118
- name: Upload coverage data
119-
uses: codecov/codecov-action@v5
119+
uses: codecov/codecov-action@v6
120120
with:
121121
token: ${{ secrets.CODECOV_TOKEN }}
122122
files: ARC/coverage.xml

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
uses: actions/checkout@v6
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v3
36+
uses: github/codeql-action/autobuild@v4
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v3
39+
uses: github/codeql-action/analyze@v4
4040
with:
4141
category: "/language:${{ matrix.language }}"

.github/workflows/docker_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
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@v7.0.0
46+
uses: docker/build-push-action@v7.1.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@v7.0.0
66+
uses: docker/build-push-action@v7.1.0
6767
with:
6868
context: .
6969
file: ./Dockerfile
@@ -80,14 +80,14 @@ jobs:
8080
8181
- name: Login to Docker Hub
8282
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
83-
uses: docker/login-action@v3.5.0
83+
uses: docker/login-action@v4.1.0
8484
with:
8585
username: ${{ secrets.DOCKERHUB_USERNAME }}
8686
password: ${{ secrets.DOCKERHUB_TOKEN }}
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@v7.0.0
90+
uses: docker/build-push-action@v7.1.0
9191
with:
9292
context: .
9393
file: ./Dockerfile

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
# ── rmg_env for Arkane/database availability ───────────────
2424
- name: Set up micromamba (rmg_env)
25-
uses: mamba-org/setup-micromamba@v2
25+
uses: mamba-org/setup-micromamba@v3
2626
with:
2727
environment-name: rmg_env
2828
create-args: >-
@@ -33,7 +33,7 @@ jobs:
3333

3434
# ── docs env (wrapper shell) ────────────────────────────────
3535
- name: Set up micromamba (arc_env)
36-
uses: mamba-org/setup-micromamba@v2
36+
uses: mamba-org/setup-micromamba@v3
3737
with:
3838
environment-name: arc_env
3939
environment-file: ARC/environment.yml

0 commit comments

Comments
 (0)