Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,28 @@ updates:
directory: /
schedule:
interval: weekly

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: weekly

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: weekly

- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: weekly

- package-ecosystem: "docker"
directory: ".devcontainer"
schedule:
interval: weekly

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: "_site"
- name: Deploy to GitHub Pages
Expand Down
5 changes: 5 additions & 0 deletions container.def
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ From: ubuntu:24.04
/usr/bin/npm ci
rm /opt/node/package.json /opt/node/package-lock.json

# Install npm packages globally in the container
cd /opt/node
/usr/bin/npm ci
rm /opt/node/package.json /opt/node/package-lock.json

# cd $HOME
# bundle install

Expand Down
Loading