7 Commits

Author SHA1 Message Date
bagas d162a63813 Merge pull request 'chore(deps): update docker/build-push-action action to v7' (#80) from renovate/docker-build-push-action-7.x into main
Docker Build and Push / build-and-push (push) Successful in 13m57s
Reviewed-on: #80
2026-03-09 22:35:57 +07:00
Renovate-Clanker f89030fb12 chore(deps): update docker/build-push-action action to v7 2026-03-08 17:04:38 +00:00
Renovate-Clanker 68b4f7b85b Merge pull request 'chore(deps): update all-dependencies' (#79) from renovate/all-dependencies into main
Docker Build and Push / build-and-push (push) Successful in 13m51s
2026-03-08 23:05:31 +07:00
Renovate-Clanker bf1d7a193e chore(deps): update all-dependencies 2026-03-08 16:05:15 +00:00
bagas ca97995c31 fix: add drizzle adapter
Docker Build and Push / build-and-push (push) Successful in 12m7s
2026-03-08 22:26:53 +07:00
bagas bdc4b90f1b Merge pull request 'chore(deps): update docker/login-action action to v4' (#78) from renovate/docker-login-action-4.x into main
Docker Build and Push / build-and-push (push) Failing after 2m29s
Reviewed-on: #78
2026-03-08 22:09:33 +07:00
Renovate-Clanker f105fb9907 chore(deps): update docker/login-action action to v4 2026-03-04 09:05:47 +00:00
3 changed files with 1226 additions and 60 deletions
+3 -3
View File
@@ -40,14 +40,14 @@ jobs:
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub - name: Log in to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v4
with: with:
registry: git.fossy.my.id registry: git.fossy.my.id
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image for main - name: Build and push Docker image for main
uses: docker/build-push-action@v6 uses: docker/build-push-action@v7
with: with:
context: . context: .
push: true push: true
@@ -57,7 +57,7 @@ jobs:
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
- name: Build and push Docker image for staging - name: Build and push Docker image for staging
uses: docker/build-push-action@v6 uses: docker/build-push-action@v7
with: with:
context: . context: .
push: true push: true
+1222 -57
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -25,6 +25,7 @@
"lint": "next lint" "lint": "next lint"
}, },
"dependencies": { "dependencies": {
"@better-auth/drizzle-adapter": "^1.5.3",
"better-auth": "^1.3.23", "better-auth": "^1.3.23",
"dotenv": "^17.2.2", "dotenv": "^17.2.2",
"drizzle-orm": "^0.45.0", "drizzle-orm": "^0.45.0",