Skip to content

Commit 644cf41

Browse files
committed
Merge branch 'master' into release
2 parents 12d9a32 + 25cb001 commit 644cf41

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python3 -m pip install --upgrade pip build
3131
python3 -m build
3232
- name: Upload wheels
33-
uses: actions/upload-artifact@v5
33+
uses: actions/upload-artifact@v6
3434
with:
3535
name: wheels
3636
path: dist/*.whl
@@ -41,7 +41,7 @@ jobs:
4141
name: Deploy wheels to PyPI
4242
steps:
4343
- name: Download wheels
44-
uses: actions/download-artifact@v6
44+
uses: actions/download-artifact@v7
4545
with:
4646
name: wheels
4747
- name: Set up Python 3.12

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
mypy --config-file pyproject.toml --junit-xml mypy-${{ matrix.python-version }}.xml .
7272
- name: Upload Unit Test Results
7373
if: always()
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: MyPy Test Results (Python ${{ matrix.python-version }})
7777
path: mypy-${{ matrix.python-version }}.xml
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: Upload
84-
uses: actions/upload-artifact@v5
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: Event File
8787
path: ${{ github.event_path }}

.github/workflows/publish-test-results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Download and Extract Artifacts
24-
uses: dawidd6/action-download-artifact@v11
24+
uses: dawidd6/action-download-artifact@v12
2525
with:
2626
run_id: ${{ github.event.workflow_run.id }}
2727
path: artifacts

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- run: mv test_reports/all.xml test_reports/pytest-${{ matrix.python-version }}.xml
5454
- name: Upload Test Results
5555
if: always()
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
with:
5858
name: "Pytest Test Results (Python ${{ matrix.python-version }})"
5959
path: test_reports/pytest-${{ matrix.python-version }}.xml
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Upload
67-
uses: actions/upload-artifact@v5
67+
uses: actions/upload-artifact@v6
6868
with:
6969
name: Event File
7070
path: ${{ github.event_path }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "riptide-lib"
7-
version = "0.10.0"
7+
version = "0.10.1"
88
description = "Tool to manage development environments for web applications using containers - Library Package"
99
readme = "README.md"
1010
requires-python = ">=3.11"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ pyyaml==6.0.3
33
configcrunch==2.1.1
44
appdirs==1.4.4
55
janus==2.0.0
6-
psutil==7.1.2
7-
GitPython==3.1.45
6+
psutil==7.2.1
7+
GitPython==3.1.46
88
pywinpty==3.0.2; sys_platform == 'win32'
99
python-hosts==1.1.2
1010
python-dotenv==1.2.1

riptide/assets/blank_user_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ riptide:
3434

3535
# Hooks can be used to run commands when certain events occur (git checkout, project start, etc.)
3636
# You can define hooks globally (below) and/or add hooks on the project level. See documentation.
37-
hooks: [ ]
37+
hooks: { }

0 commit comments

Comments
 (0)