Skip to content

Commit e970cdb

Browse files
authored
Merge pull request #182 from aplbrain/180-sync-fork-mar-23-week
Sync Fork (Mar. 24 week)
2 parents 60865db + ef007fd commit e970cdb

27 files changed

Lines changed: 713 additions & 245 deletions

.copier-answers.resonant.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
_commit: v0.47.1
2-
_src_path: gh:kitware-resonant/cookiecutter-resonant
1+
_commit: v0.48.1
2+
_src_path: https://github.com/kitware-resonant/cookiecutter-resonant
33
core_app_name: api
44
include_example_code: false
55
project_name: DANDI Archive

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"ghcr.io/devcontainers-extra/features/heroku-cli:1.0.5": {},
2525
"ghcr.io/devcontainers/features/github-cli:1": {},
2626
"ghcr.io/devcontainers/features/node:1": {
27-
"version": "20"
27+
"version": "24"
2828
}
2929
},
3030
"customizations": {

.github/renovate.json5

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
3+
extends: [
4+
'github>kitware-resonant/.github:renovate-project.json5',
5+
],
6+
}

.github/workflows/auto-add-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
add-to-project:
1111
name: Add issue to project
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: actions/add-to-project@v1.0.2
1515
with:

.github/workflows/backend-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: read
1313
jobs:
1414
test:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
services:
1717
postgres:
1818
image: postgres:latest

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ concurrency:
2525
jobs:
2626
# reset-release-branch:
2727
# name: Update release branch
28-
# runs-on: ubuntu-22.04
28+
# runs-on: ubuntu-24.04
2929
# steps:
3030
# - uses: actions/checkout@v6
3131
# with:
@@ -40,8 +40,8 @@ jobs:
4040

4141
production-deploy:
4242
name: Deploy to Heroku
43-
runs-on: ubuntu-22.04
44-
#needs: reset-release-branch
43+
runs-on: ubuntu-24.04
44+
# needs: reset-release-branch
4545
steps:
4646
- uses: actions/checkout@v6
4747
with:
@@ -55,7 +55,7 @@ jobs:
5555
run: curl https://cli-assets.heroku.com/install.sh | sh
5656

5757
- name: Install builds plugin
58-
run: heroku plugins:install heroku-builds
58+
run: heroku plugins:install @heroku-cli/heroku-builds
5959

6060
- name: Build app into tarball
6161
run: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
deploy:
2323
name: Deploy to Heroku
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-24.04
2525
steps:
2626
- uses: actions/checkout@v6
2727
with:
@@ -34,7 +34,7 @@ jobs:
3434
run: curl https://cli-assets.heroku.com/install.sh | sh
3535

3636
- name: Install builds plugin
37-
run: heroku plugins:install heroku-builds
37+
run: heroku plugins:install @heroku-cli/heroku-builds
3838

3939
- name: Build app into tarball
4040
run: |

.github/workflows/cli-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
build-image:
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Check out this repository
2121
uses: actions/checkout@v6
@@ -40,7 +40,7 @@ jobs:
4040
path: dandiarchive-api.tgz
4141

4242
test:
43-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-24.04
4444
needs: build-image
4545
strategy:
4646
fail-fast: false

.github/workflows/frontend-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
defaults:
1212
run:
1313
working-directory: web
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0 # fetch history for all branches and tags
1919

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

2424
- name: Install Vue app
2525
run: npm ci
@@ -35,7 +35,7 @@ jobs:
3535

3636
test-e2e:
3737
name: E2E tests
38-
runs-on: ubuntu-22.04
38+
runs-on: ubuntu-24.04
3939
services:
4040
postgres:
4141
image: postgres:latest
@@ -93,7 +93,7 @@ jobs:
9393

9494
- uses: actions/setup-node@v6
9595
with:
96-
node-version: 20
96+
node-version: 24
9797

9898
- name: Install uv
9999
uses: astral-sh/setup-uv@v7

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
release:
1414
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- uses: actions/checkout@v6
1818
with:

0 commit comments

Comments
 (0)