Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 84e26e2

Browse files
committed
2 parents 1e81c90 + 331779f commit 84e26e2

File tree

6 files changed

+29
-24
lines changed

6 files changed

+29
-24
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
target-branch: "main"
38
- package-ecosystem: "pip"
49
directory: "/"
510
schedule:

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Clone Repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

2727
- name: Set up Poetry
28-
uses: abatilo/actions-poetry@v2.2.0
28+
uses: abatilo/actions-poetry@v3.0.0
2929
with:
3030
poetry-version: 1.3.2
3131

@@ -47,7 +47,7 @@ jobs:
4747
contents: write # needed for github actions bot to write to repo
4848
steps:
4949
- name: Clone Repository
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
ref: ${{ github.ref }}
5353
fetch-depth: 0

.github/workflows/codeql.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@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
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#, Go, 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@v2
59+
uses: github/codeql-action/autobuild@v3
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,6 +69,6 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
72+
uses: github/codeql-action/analyze@v3
7373
with:
7474
category: "/language:${{matrix.language}}"

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/setup-python@v2
10+
- uses: actions/setup-python@v5
1111
- uses: actions/checkout@master
1212
with:
1313
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

poetry.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ typing-extensions = "^4.2.0"
2727
python-dateutil = "^2.8.2"
2828

2929
[tool.poetry.dev-dependencies]
30-
python-semantic-release = "^8.1.1"
30+
python-semantic-release = "^9.1.1"
3131
black = "^23.10.0"
3232
isort = "^5.12.0"
33-
pre-commit = "^3.4.0"
33+
pre-commit = "^3.5.0"
3434
pytest = "^7.4.3"
3535
pytest-asyncio = "^0.21.0"
3636
pytest-cov = "^4.1.0"

0 commit comments

Comments
 (0)