Skip to content

Commit b997910

Browse files
Update all non-major dependencies
1 parent b4c0367 commit b997910

10 files changed

Lines changed: 369 additions & 394 deletions

.github/workflows/backend-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
DJANGO_DANDI_INSTANCE_IDENTIFIER: "RRID:ABC_123456"
5858
DJANGO_DANDI_DOI_API_PREFIX: "10.80507"
5959
steps:
60-
- uses: actions/checkout@v6
60+
- uses: actions/checkout@v6.0.3
6161
with:
6262
fetch-depth: 0 # fetch history for all branches and tags
6363
- name: Install uv

.github/workflows/backend-production-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: Update release branch
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v6.0.3
2424
with:
2525
fetch-depth: 0 # fetch history for all branches and tags
2626
token: ${{ secrets.GH_TOKEN }} # TODO: switch to GITHUB_TOKEN
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-24.04
3737
needs: reset-release-branch
3838
steps:
39-
- uses: actions/checkout@v6
39+
- uses: actions/checkout@v6.0.3
4040
with:
4141
fetch-depth: 0 # fetch history for all branches and tags
4242
ref: release

.github/workflows/backend-staging-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Deploy to Heroku
2424
runs-on: ubuntu-24.04
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v6.0.3
2727
with:
2828
fetch-depth: 0 # fetch history for all branches and tags
2929

.github/workflows/cli-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Check out this repository
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v6.0.3
2222
with:
2323
fetch-depth: 0 # fetch history for all branches and tags
2424

@@ -34,7 +34,7 @@ jobs:
3434
docker image save -o dandiarchive-api.tgz dandiarchive/dandiarchive-api
3535
3636
- name: Upload Docker image tarball
37-
uses: actions/upload-artifact@v7
37+
uses: actions/upload-artifact@v7.0.1
3838
with:
3939
name: dandiarchive-api.tgz
4040
path: dandiarchive-api.tgz
@@ -54,7 +54,7 @@ jobs:
5454
DANDI_TESTS_PULL_DOCKER_COMPOSE: 0
5555
steps:
5656
- name: Download Docker image tarball
57-
uses: actions/download-artifact@v8
57+
uses: actions/download-artifact@v8.0.1
5858
with:
5959
name: dandiarchive-api.tgz
6060

.github/workflows/frontend-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
working-directory: web
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@v6.0.3
1717
with:
1818
fetch-depth: 0 # fetch history for all branches and tags
1919

20-
- uses: actions/setup-node@v6
20+
- uses: actions/setup-node@v6.4.0
2121
with:
2222
node-version: 24.x
2323

@@ -87,11 +87,11 @@ jobs:
8787
VITE_APP_OAUTH_API_ROOT: http://localhost:8000/oauth/
8888
VITE_APP_OAUTH_CLIENT_ID: Dk0zosgt1GAAKfN8LT4STJmLJXwMDPbYWYzfNtAl
8989
steps:
90-
- uses: actions/checkout@v6
90+
- uses: actions/checkout@v6.0.3
9191
with:
9292
fetch-depth: 0 # fetch history for all branches and tags
9393

94-
- uses: actions/setup-node@v6
94+
- uses: actions/setup-node@v6.4.0
9595
with:
9696
node-version: 24
9797

@@ -133,7 +133,7 @@ jobs:
133133
# run the tests
134134
cd e2e && npx playwright test
135135
136-
- uses: actions/upload-artifact@v7
136+
- uses: actions/upload-artifact@v7.0.1
137137
if: always()
138138
with:
139139
name: playwright-report

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1515
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v6.0.3
1818
with:
1919
fetch-depth: 0 # fetch history for all branches and tags
2020
token: ${{ secrets.GH_TOKEN }} # TODO: switch to GITHUB_TOKEN

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,34 @@ dependencies = [
1414
"celery==5.6.3",
1515
# Pin dandischema to exact version to make explicit which schema version is being used
1616
"dandischema==0.12.1", # schema version 0.7.0
17-
"django[argon2]==5.2.13",
18-
"django-allauth==65.16.1",
17+
"django[argon2]==5.2.14",
18+
"django-allauth==65.18.0",
1919
"django-auth-style==0.15.0",
2020
"django-click==2.5.0",
2121
"django-cors-headers==4.9.0",
2222
"django-environ==0.13.0",
2323
"django-extensions==4.1",
2424
"django-filter==25.2",
2525
"django-guardian==3.3.1",
26-
"django-oauth-toolkit==3.2.0",
27-
"django-resonant-settings[allauth,celery]==0.50.4",
26+
"django-oauth-toolkit==3.3.0",
27+
"django-resonant-settings[allauth,celery]==0.51.1",
2828
"django-resonant-utils[allauth,s3_storage]==0.19.0",
2929
"django-stubs-ext==6.0.3",
3030
"djangorestframework==3.17.1",
3131
"drf-extensions==0.8.0",
3232
"drf-yasg==1.21.15",
3333
"jsonschema==4.26.0",
34-
"more_itertools==11.0.2",
35-
"psycopg[binary]==3.3.3",
34+
"more_itertools==11.1.0",
35+
"psycopg[binary]==3.3.4",
3636
"pyyaml==6.0.3",
37-
"requests==2.33.1",
37+
"requests==2.34.2",
3838
"rich==15.0.0",
3939
"whitenoise[brotli]==6.12.0",
4040
"zarr-checksum==0.4.7",
4141
# Production-only
4242
"django-s3-file-field[s3]==1.1.0",
4343
"django-storages[s3]==1.14.6",
44-
"sentry-sdk[celery,django,pure_eval]==2.58.0",
44+
"sentry-sdk[celery,django,pure_eval]==2.61.0",
4545
"gunicorn==25.3.0",
4646
# Development-only, but required
4747
"tqdm==4.67.3",
@@ -53,12 +53,12 @@ development = [
5353
# Runtime dependencies, only needed with "development" settings
5454
"django-browser-reload==1.21.0",
5555
"django-debug-toolbar==6.3.0",
56-
"ipython==9.13.0",
56+
"ipython==9.14.0",
5757
"watchdog==6.0.0",
5858
"werkzeug==3.1.8",
5959
]
6060
cli = [
61-
"dandi[extras]==0.74.3",
61+
"dandi[extras]==0.76.0",
6262
]
6363

6464
[dependency-groups]

0 commit comments

Comments
 (0)