Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dedps + Dev->Nightly action #445

Merged
merged 10 commits into from
Aug 27, 2023
20 changes: 18 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,42 @@ updates:
- package-ecosystem: "github-actions"
directory: "/.github"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain dependencies for Go mods
- package-ecosystem: "pip"
directory: "/backend"
schedule:
interval: "daily"
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain version for Docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"

# Maintain version for npm or yarn
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "weekly"
day: "friday"
time: "00:30"
target-branch: "dev"
assignees:
- "hibare"
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name: "Dev Build"
name: "Nightly Build"

# When its time to do a release do a full cross platform build for all supported
# architectures and push all of them to Docker Hub & Github container registry.
# Only trigger on semver shaped tags.
on:
push:
branches:
- dev
schedule:
- cron: "0 0 * * *"

jobs:
docker-image-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: dev

- name: Docker meta
id: meta
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ djangorestframework==3.14.0
# via
# -r requirements.in
# djangorestframework-simplejwt
djangorestframework-simplejwt==5.2.2
djangorestframework-simplejwt==5.3.0
# via -r requirements.in
drf-writable-nested==0.7.0
# via -r requirements.in
Expand Down
42 changes: 21 additions & 21 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"lodash.clonedeep": "^4.5.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"quasar": "^2.12.4",
"quasar": "^2.12.5",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@quasar/vite-plugin": "^1.4.1",
"@vitejs/plugin-vue": "^4.2.3",
"sass": "^1.65.1",
"@vitejs/plugin-vue": "^4.3.1",
"sass": "^1.66.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vue-tsc": "^1.8.8"
Expand Down