Skip to content

Commit 5785ccd

Browse files
authored
Merge pull request #115 from victorskl/bump-deps-20260327
Bumped dependencies
2 parents 62118c1 + e3ecd4d commit 5785ccd

5 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v3
59+
uses: github/codeql-action/autobuild@v4
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v3
72+
uses: github/codeql-action/analyze@v4

.github/workflows/prbuild.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
# https://github.com/actions/checkout
1414
# https://github.com/actions/setup-python
1515
# https://github.com/marketplace/actions/codecov
16-
# https://github.com/marketplace/actions/code-climate-coverage-action
1716
# https://github.com/marketplace/actions/trufflehog-oss
1817

1918
jobs:
@@ -26,21 +25,21 @@ jobs:
2625
runs-on: ubuntu-latest
2726
strategy:
2827
matrix:
29-
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
28+
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
3029

3130
steps:
3231
- name: Checkout code
33-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3433
with:
3534
fetch-depth: 0
3635

3736
- name: TruffleHog OSS
38-
uses: trufflesecurity/trufflehog@v3.82.6
37+
uses: trufflesecurity/trufflehog@v3.94.1
3938
with:
4039
extra_args: --only-verified
4140

4241
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4443
with:
4544
python-version: ${{ matrix.python-version }}
4645

@@ -62,11 +61,11 @@ jobs:
6261
xvfb-run pytest --cov-report xml --cov=yawsso tests/
6362
6463
- name: Publish coverage to to Codecov
65-
uses: codecov/codecov-action@v4
64+
uses: codecov/codecov-action@v6.0.0
6665
env:
6766
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6867
with:
69-
file: ./coverage.xml
68+
files: ./coverage.xml
7069
flags: unittests
7170
name: yawsso
7271

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
exclude: ^(yarn.lock|.yarn/|pnpm-lock.yaml)
1010

1111
- repo: https://github.com/pre-commit/pre-commit-hooks
12-
rev: v4.6.0
12+
rev: v6.0.0
1313
hooks:
1414
- id: check-added-large-files
1515
- id: check-json

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
classifiers=[
2525
"Development Status :: 5 - Production/Stable",
2626
"Programming Language :: Python :: 3",
27-
"License :: OSI Approved :: MIT License",
2827
"Operating System :: OS Independent",
2928
],
3029
extras_require={

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312}
2+
envlist = py{39,310,311,312,313,314}
33
skip_missing_interpreters=True
44

55
[testenv]

0 commit comments

Comments
 (0)