Skip to content

Commit 7cba321

Browse files
fix(deps): update non-major dependencies
1 parent 5626b07 commit 7cba321

10 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/integration-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ jobs:
5252
- name: Verify Conda platform
5353
run: echo "Conda platform is $CONDA_PLATFORM"
5454

55-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
55+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
5656
with:
5757
persist-credentials: false
5858
- name: Set up Python
59-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
59+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
6060
with:
6161
python-version: ${{ matrix.python-version }}
6262
- name: install conda-lock
@@ -138,7 +138,7 @@ jobs:
138138
os: [ ubuntu-latest, macos-latest, windows-latest ]
139139
python-version: [ "3.10", "3.14" ]
140140
steps:
141-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
141+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
142142
with:
143143
persist-credentials: false
144144
- uses: conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3.3.0
@@ -220,7 +220,7 @@ jobs:
220220
echo "CONDA_PLATFORM=linux-64" >> $GITHUB_ENV
221221
- name: Verify Conda platform
222222
run: echo "Conda platform is $CONDA_PLATFORM"
223-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
223+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
224224
with:
225225
persist-credentials: false
226226
- name: Set up Conda

.github/workflows/mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
permissions:
2626
contents: write # for mkdocs gh-deploy to push to gh-pages branch
2727
steps:
28-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
28+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
2929
with:
3030
submodules: "recursive"
3131
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
@@ -48,7 +48,7 @@ jobs:
4848

4949
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
5050

51-
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
51+
- uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
5252
with:
5353
key: mkdocs-material-${{ env.cache_id }}
5454
path: .cache

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
contents: read
1818
actions: write # for uploading artifacts
1919
steps:
20-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
2121
with:
2222
fetch-depth: 0
2323
persist-credentials: false
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
26+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2727
with:
28-
python-version: "3.10"
28+
python-version: "3.14"
2929

3030
- name: build
3131
run: |
@@ -64,4 +64,4 @@ jobs:
6464
name: dist-files
6565
path: dist
6666
- name: Publish a Python distribution to PyPI
67-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
67+
uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
PYTHONUNBUFFERED: "1"
9090
FORCE_COLOR: "1"
9191
steps:
92-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
92+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
9393
with:
9494
fetch-depth: 0
9595
persist-credentials: false
@@ -151,7 +151,7 @@ jobs:
151151
--splits="${{ matrix.pytest-split-group-size }}" \
152152
--group="${{ matrix.pytest-split-group-index }}"
153153
154-
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
154+
- uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
155155
with:
156156
token: ${{ secrets.CODECOV_TOKEN }}
157157

.github/workflows/typecheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ jobs:
4343
os: ubuntu-latest
4444
steps:
4545
# Initialization
46-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
46+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
4747
with:
4848
fetch-depth: 0
4949
persist-credentials: false
50-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
50+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
5151
if: matrix.setup-micromamba == false
5252
with:
5353
python-version: 3.14

.github/workflows/update-lockfile.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
contents: read
2929
actions: write # for uploading artifacts
3030
steps:
31-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
31+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
3232
with:
3333
persist-credentials: false
3434
- name: Install Micromamba
@@ -64,7 +64,7 @@ jobs:
6464
pull-requests: write # for creating pull requests
6565
actions: read # for downloading artifacts
6666
steps:
67-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
67+
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
6868
with:
6969
persist-credentials: false
7070

@@ -74,7 +74,7 @@ jobs:
7474
path: environments/
7575

7676
- name: Open a pull request
77-
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
77+
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
7878
with:
7979
# # The default GITHUB_TOKEN doesn't allow other workflows to trigger.
8080
# # Thus if there are tests to be run, they won't be run. For more info,

.github/workflows/update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pull-requests: write # Required to open the generated update pull request.
2525
issues: write # Required for generated update pull request metadata.
2626
steps:
27-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
27+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2828
with:
2929
persist-credentials: false
3030

@@ -33,11 +33,11 @@ jobs:
3333
git config --global user.name 'Conda Bot'
3434
git config --global user.email '18747875+conda-bot@users.noreply.github.com'
3535
36-
- uses: conda/actions/combine-durations@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
36+
- uses: conda/actions/combine-durations@0f4ec1506e74c12799813dc66e613a39077ea864 # v26.7.0
3737
id: durations
3838
continue-on-error: true
3939

40-
- uses: conda/actions/template-files@7f6830b1428a9bd47f0b068892c77eae95207037 # v26.1.0
40+
- uses: conda/actions/template-files@0f4ec1506e74c12799813dc66e613a39077ea864 # v26.7.0
4141
id: templates
4242
continue-on-error: true
4343

.github/workflows/zizmor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
actions: read # only needed for private repos
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
2121
with:
2222
persist-credentials: false
2323

2424
- name: Run zizmor 🌈
25-
uses: zizmorcore/zizmor-action@135698455da5c3b3e55f73f4419e481ab68cdd95 # v0.4.1
25+
uses: zizmorcore/zizmor-action@6599ee8b7a49aef6a770f63d261d214911a7ce02 # v0.6.0
2626
with:
2727
persona: pedantic

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ docker-py = "*"
6262
doctr = "*"
6363
flaky = "*"
6464
freezegun = "*"
65-
mamba = "<2.6.0"
65+
mamba = "<2.8.2"
6666
mkdocs = "*"
6767
mkdocs-click = "*"
6868
mkdocs-include-markdown-plugin = "*"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dependencies = [
7777
"build >=1.2.1,<2.0.0",
7878
"cachecontrol[filecache] >=0.14.0,<0.15.0",
7979
"crashtest >=0.4.1,<0.5.0",
80-
"dulwich >=0.22.6,<0.25",
80+
"dulwich >=0.25.2,<0.26",
8181
"fastjsonschema >=2.18.0,<3.0.0",
8282
'importlib-metadata >= 4.4 ; python_version <"3.10"',
8383
'installer >=1.0.1,<2.0.0',

0 commit comments

Comments
 (0)