Skip to content

Commit 4c7a859

Browse files
chore(deps): bump the actions group with 3 updates (#132)
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `codecov/codecov-action` from 5.4.3 to 5.5.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@18283e0...671740a) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Luke Kim <80174+lukekim@users.noreply.github.com>
1 parent 4aa42f4 commit 4c7a859

4 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2626
name: Build on ${{ matrix.os }} with Python ${{ matrix.python-version }}
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
- name: Set up Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
cache: 'pip'

.github/workflows/lint.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2424
name: Lint with ruff (Python ${{ matrix.python-version }})
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
cache: 'pip'
@@ -47,9 +47,9 @@ jobs:
4747
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
4848
name: Lint with pylint (Python ${{ matrix.python-version }})
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
- name: Set up Python ${{ matrix.python-version }}
52-
uses: actions/setup-python@v5
52+
uses: actions/setup-python@v6
5353
with:
5454
python-version: ${{ matrix.python-version }}
5555
cache: 'pip'
@@ -71,9 +71,9 @@ jobs:
7171
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
7272
name: Type check with mypy (Python ${{ matrix.python-version }})
7373
steps:
74-
- uses: actions/checkout@v4
74+
- uses: actions/checkout@v6
7575
- name: Set up Python ${{ matrix.python-version }}
76-
uses: actions/setup-python@v5
76+
uses: actions/setup-python@v6
7777
with:
7878
python-version: ${{ matrix.python-version }}
7979
cache: 'pip'
@@ -88,9 +88,9 @@ jobs:
8888
runs-on: ubuntu-latest
8989
name: Security scan with bandit
9090
steps:
91-
- uses: actions/checkout@v4
91+
- uses: actions/checkout@v6
9292
- name: Set up Python 3.12
93-
uses: actions/setup-python@v5
93+
uses: actions/setup-python@v6
9494
with:
9595
python-version: '3.12'
9696
cache: 'pip'

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2626
name: Test pip install (Python ${{ matrix.python-version }})
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
- name: Set up Python ${{ matrix.python-version }}
30-
uses: actions/setup-python@v5
30+
uses: actions/setup-python@v6
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333

@@ -44,9 +44,9 @@ jobs:
4444
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
4545
name: Unit tests on ${{ matrix.os }} (Python ${{ matrix.python-version }})
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v6
4848
- name: Set up Python ${{ matrix.python-version }}
49-
uses: actions/setup-python@v5
49+
uses: actions/setup-python@v6
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252
cache: 'pip'
@@ -66,9 +66,9 @@ jobs:
6666
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
6767
name: Integration tests on ${{ matrix.os }} (Python ${{ matrix.python-version }})
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v6
7070
- name: Set up Python ${{ matrix.python-version }}
71-
uses: actions/setup-python@v5
71+
uses: actions/setup-python@v6
7272
with:
7373
python-version: ${{ matrix.python-version }}
7474
cache: 'pip'
@@ -167,9 +167,9 @@ jobs:
167167
python-version: ['3.12']
168168
name: Cloud tests (Python ${{ matrix.python-version }})
169169
steps:
170-
- uses: actions/checkout@v4
170+
- uses: actions/checkout@v6
171171
- name: Set up Python ${{ matrix.python-version }}
172-
uses: actions/setup-python@v5
172+
uses: actions/setup-python@v6
173173
with:
174174
python-version: ${{ matrix.python-version }}
175175
cache: 'pip'
@@ -191,9 +191,9 @@ jobs:
191191
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
192192
name: Test coverage (Python ${{ matrix.python-version }})
193193
steps:
194-
- uses: actions/checkout@v4
194+
- uses: actions/checkout@v6
195195
- name: Set up Python ${{ matrix.python-version }}
196-
uses: actions/setup-python@v5
196+
uses: actions/setup-python@v6
197197
with:
198198
python-version: ${{ matrix.python-version }}
199199
cache: 'pip'
@@ -205,7 +205,7 @@ jobs:
205205
pytest --cov=spicepy --cov-report=xml --cov-report=term-missing --ignore=tests/test_main.py tests/
206206
- name: Upload coverage to Codecov
207207
if: matrix.python-version == '3.12'
208-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v4.5.0
208+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v4.5.0
209209
with:
210210
files: ./coverage.xml
211211
fail_ci_if_error: false

.github/workflows/version.yml

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

2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Extract version from setup.py
2626
id: get-version
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Check out code
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v6
5151

5252
- name: Create and push tag
5353
run: |

0 commit comments

Comments
 (0)