Skip to content

Commit c8156f9

Browse files
Merge branch 'master' into paramspec
2 parents 0e56d88 + bf2ac43 commit c8156f9

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

.github/workflows/auto-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v1.6.0
15+
uses: dependabot/fetch-metadata@v2.1.0
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Enable auto-merge for Dependabot PRs

.github/workflows/ci-cd.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
timeout-minutes: 5
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Setup Python
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: 3.8
2828
cache: 'pip'
2929
cache-dependency-path: '**/requirements*.txt'
3030
- name: Pre-Commit hooks
31-
uses: pre-commit/[email protected].0
31+
uses: pre-commit/[email protected].1
3232
- name: Install dependencies
33-
uses: py-actions/py-dependency-install@v4.0.0
33+
uses: py-actions/py-dependency-install@v4.1.0
3434
with:
3535
path: requirements-dev.txt
3636
- name: Install itself
@@ -66,16 +66,16 @@ jobs:
6666
timeout-minutes: 15
6767
steps:
6868
- name: Checkout
69-
uses: actions/checkout@v3
69+
uses: actions/checkout@v4
7070
- name: Setup Python ${{ matrix.pyver }}
71-
uses: actions/setup-python@v4
71+
uses: actions/setup-python@v5
7272
with:
7373
allow-prereleases: true
7474
python-version: ${{ matrix.pyver }}
7575
cache: 'pip'
7676
cache-dependency-path: '**/requirements*.txt'
7777
- name: Install dependencies
78-
uses: py-actions/py-dependency-install@v4.0.0
78+
uses: py-actions/py-dependency-install@v4.1.0
7979
with:
8080
path: requirements.txt
8181
- name: Run unittests
@@ -84,7 +84,7 @@ jobs:
8484
COLOR: 'yes'
8585
- run: python -m coverage xml
8686
- name: Upload coverage
87-
uses: codecov/codecov-action@v3
87+
uses: codecov/codecov-action@v4
8888
with:
8989
file: ./coverage.xml
9090
flags: unit
@@ -118,9 +118,9 @@ jobs:
118118

119119
steps:
120120
- name: Checkout
121-
uses: actions/checkout@v3
121+
uses: actions/checkout@v4
122122
- name: Setup Python
123-
uses: actions/setup-python@v4
123+
uses: actions/setup-python@v5
124124
with:
125125
python-version: 3.8
126126
- name: Install dependencies
@@ -155,7 +155,7 @@ jobs:
155155
# Confusingly, this action also supports updating releases, not
156156
# just creating them. This is what we want here, since we've manually
157157
# created the release above.
158-
uses: softprops/action-gh-release@v1
158+
uses: softprops/action-gh-release@v2
159159
with:
160160
# dist/ contains the built packages, which smoketest-artifacts/
161161
# contains the signatures and certificates.

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@v2
34+
uses: github/codeql-action/init@v3
3535
with:
3636
languages: ${{ matrix.language }}
3737
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -45,7 +45,7 @@ jobs:
4545
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
4646
# If this step fails, then you should remove it and run the build manually (see below)
4747
- name: Autobuild
48-
uses: github/codeql-action/autobuild@v2
48+
uses: github/codeql-action/autobuild@v3
4949

5050
# ℹ️ Command-line programs to run using the OS shell.
5151
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -58,6 +58,6 @@ jobs:
5858
# ./location_of_script_within_repo/buildscript.sh
5959

6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@v2
61+
uses: github/codeql-action/analyze@v3
6262
with:
6363
category: "/language:${{matrix.language}}"

requirements-dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r requirements.txt
22

3-
flake8==6.1.0
3+
flake8==7.0.0
44
flake8-bandit==4.1.1
5-
flake8-bugbear==23.9.16
5+
flake8-bugbear==24.4.26
66
flake8-import-order==0.18.2
7-
flake8-requirements==1.7.8
8-
mypy==1.6.1; implementation_name=="cpython"
7+
flake8-requirements==2.2.0
8+
mypy==1.10.0; implementation_name=="cpython"

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-e .
22

3-
coverage==7.3.2
4-
pytest==7.4.3
5-
pytest-asyncio==0.21.1
6-
pytest-cov==4.1.0
7-
pytest-timeout==2.2.0
3+
coverage==7.5.1
4+
pytest==8.2.1
5+
pytest-asyncio==0.23.7
6+
pytest-cov==5.0.0
7+
pytest-timeout==2.3.1

0 commit comments

Comments
 (0)