Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
da3d63a
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot Dec 14, 2025
4ce24e7
Merge pull request #18 from Dargon789/snyk-fix-f6ea5e60874bd07c64dfc7…
Dargon789 Dec 15, 2025
1baa154
Revert "Fix React Server Components CVE vulnerabilities"
Dargon789 Jan 19, 2026
1c79cee
Merge pull request #21 from Dargon789/revert-20-vercel/react-server-c…
Dargon789 Jan 19, 2026
ccd5638
fix: package.json & package-lock.json to reduce vulnerabilities (#14)
Dargon789 Jan 19, 2026
ea38860
fix: package.json to reduce vulnerabilities (#22)
snyk-io[bot] Jan 19, 2026
945d384
fix: package.json to reduce vulnerabilities (#19)
snyk-io[bot] Jan 19, 2026
f7ef9c3
deps: bump next from 15.3.5 to 15.5.9 (#17)
dependabot[bot] Jan 19, 2026
7dd591e
deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15)
dependabot[bot] Jan 19, 2026
8bb5ff5
fix: package.json to reduce vulnerabilities (#13)
snyk-io[bot] Jan 19, 2026
a1774d6
fix: upgrade react from 19.1.0 to 19.2.0 (#12)
snyk-io[bot] Jan 19, 2026
6b8f0c0
fix: upgrade typescript from 5.8.3 to 5.9.3 (#11)
snyk-io[bot] Jan 19, 2026
c9b2da1
feat: upgrade zod from 3.25.76 to 4.1.11 (#10)
snyk-io[bot] Jan 19, 2026
a44817c
fix: upgrade next from 15.3.5 to 15.5.4 (#9)
snyk-io[bot] Jan 19, 2026
b6dc141
deps: bump the dependencies-major group across 1 directory with 2 upd…
dependabot[bot] Jan 19, 2026
21d1fc5
fix: package.json to reduce vulnerabilities (#7)
snyk-io[bot] Jan 19, 2026
bc72b65
Merge pull request #25 from Dargon789/main
Dargon789 Jan 19, 2026
332f034
Merge pull request #26 from Dargon789/vercel/react-server-components-…
Dargon789 Jan 19, 2026
54cecae
Create config.yml
Dargon789 Jan 19, 2026
24f5e14
Update .github/config.yml
Dargon789 Jan 19, 2026
863ef8f
Merge pull request #27 from Dargon789/Dargon789-patch-1
Dargon789 Jan 19, 2026
714bbe8
Delete .circleci directory
Dargon789 Jan 19, 2026
1ff8eb3
Merge pull request #28 from Dargon789/Dargon789-patch-2
Dargon789 Jan 19, 2026
649d587
#26 #27 #28 (#29) (#30)
Dargon789 Jan 19, 2026
69fefe5
deps: bump next from 16.0.10 to 16.1.6 (#39)
dependabot[bot] Feb 7, 2026
299eb45
fix: package.json & package-lock.json to reduce vulnerabilities (#44)
Dargon789 Feb 7, 2026
2c901d7
deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45)
dependabot[bot] Feb 7, 2026
718865a
deps: bump the dependencies-minor group across 1 directory with 16 up…
dependabot[bot] Feb 7, 2026
2119d52
Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51)
Dargon789 Feb 7, 2026
f6c700b
Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53)
Dargon789 Feb 7, 2026
6fc6155
fix: package.json & package-lock.json to reduce vulnerabilities (#56…
Dargon789 Feb 7, 2026
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
6 changes: 3 additions & 3 deletions .circleci/config.yml → .github/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
docker:
# Specify the version you desire here
# Specify the version you desire here (pin to a specific tag for reproducible builds)
# See: https://circleci.com/developer/images/image/cimg/base
- image: cimg/base:current
- image: cimg/base:2024.01
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

This file appears to be a CircleCI configuration, but it has been moved to the .github directory, which is used for GitHub Actions. This will likely break your CI pipeline as CircleCI will no longer find its configuration file at the expected .circleci/config.yml path. If you intend to continue using CircleCI, this file should be moved back to its original location.


# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
Expand All @@ -28,4 +28,4 @@ workflows:
say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
jobs:
- say-hello
- say-hello
Loading