Compare commits

..

9 Commits

Author SHA1 Message Date
301ccdf84d chore(deps): update dependency node to v24.15.0
All checks were successful
test-build / build (pull_request) Successful in 2m10s
test-build / guarddog (pull_request) Successful in 1m47s
2026-04-18 12:01:29 +00:00
7abb543adc Merge pull request 'fix(deps): update dependency marked to v18.0.1' (#431) from renovate/marked-18.x into main
All checks were successful
test-build / build (push) Successful in 6m50s
test-build / guarddog (push) Successful in 7m35s
renovate / renovate (push) Successful in 1m49s
2026-04-18 06:03:05 +00:00
f52a34edd7 fix(deps): update dependency marked to v18.0.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
test-build / guarddog (pull_request) Successful in 48s
test-build / build (pull_request) Successful in 2m4s
2026-04-18 06:02:43 +00:00
fb332279fe Merge pull request 'chore(deps): update dependency eslint to v10.2.1' (#430) from renovate/eslint-monorepo into main
Some checks failed
test-build / build (push) Has been cancelled
test-build / guarddog (push) Has been cancelled
2026-04-18 06:02:40 +00:00
d7bfe9051f chore(deps): update dependency eslint to v10.2.1
Some checks failed
renovate/stability-days Updates have not met minimum release age requirement
test-build / guarddog (pull_request) Successful in 2m2s
test-build / build (pull_request) Failing after 11m45s
2026-04-18 06:02:17 +00:00
87bd3a16b6 Merge pull request 'chore(deps): pin dependencies' (#427) from renovate/pin-dependencies into main
All checks were successful
renovate / renovate (push) Successful in 2m11s
Reviewed-on: #427
2026-04-18 00:14:33 +00:00
bd54e684ad Merge pull request 'chore(deps): update dependency typescript to v6.0.3' (#429) from renovate/typescript-6.x into main
All checks were successful
test-build / guarddog (push) Successful in 1m14s
test-build / build (push) Successful in 2m51s
2026-04-18 00:02:08 +00:00
a5c1d54068 chore(deps): update dependency typescript to v6.0.3
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
test-build / guarddog (pull_request) Successful in 1m46s
test-build / build (pull_request) Successful in 6m29s
2026-04-18 00:01:44 +00:00
b4af6404ca chore(deps): pin dependencies
All checks were successful
test-build / guarddog (pull_request) Successful in 6m0s
test-build / build (pull_request) Successful in 7m43s
2026-04-17 00:05:53 +00:00
6 changed files with 46 additions and 68 deletions

View File

@@ -22,17 +22,17 @@ jobs:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
with:
ref: release
- name: Set up Node
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: 24.14.1
node-version: 24.15.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.2.0
with:
bun-version: 1.3.12
@@ -40,7 +40,7 @@ jobs:
run: bun install --frozen-lockfile
- name: Cache Astro Build
uses: actions/cache@v5
uses: actions/cache@v5.0.5
with:
path: |
.astro
@@ -75,12 +75,12 @@ jobs:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
with:
ref: release
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: '3.12.13'
@@ -120,7 +120,7 @@ jobs:
new-release-git-tag: ${{ steps.semantic.outputs.new-release-git-tag }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
@@ -133,12 +133,12 @@ jobs:
git commit --allow-empty -m "fix(content): directus published update [skip ci]"
- name: Set up Node
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: 24.14.1
node-version: 24.15.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.2.0
with:
bun-version: 1.3.12
@@ -160,19 +160,19 @@ jobs:
if: ${{ needs.semantic-release.outputs.new-release-published == 'true' }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
with:
ref: release
- name: Login to Harbor Registry
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
with:
registry: ${{ vars.REGISTRY_HOST }}
username: ${{ vars.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_SECRET }}
- name: Login to Docker
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
with:
registry: ${{ vars.DH_REGISTRY }}
username: ${{ secrets.DH_USERNAME }}
@@ -185,7 +185,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v4
uses: docker/setup-buildx-action@v4.0.0
with:
driver: kubernetes
driver-opts: |
@@ -200,7 +200,7 @@ jobs:
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v6
uses: docker/metadata-action@v6.0.0
with:
images: |
${{ vars.REGISTRY_HOST }}/images/site-profile
@@ -213,7 +213,7 @@ jobs:
type=semver,pattern={{major}},value=${{ needs.semantic-release.outputs.new-release-version }}
- name: Build and Push Image
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.1.0
with:
context: .
push: true
@@ -264,19 +264,19 @@ jobs:
needs.semantic-release.outputs.new-release-published == 'true'
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
with:
ref: release
- name: Login to Gitea Registry
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
with:
registry: ${{ vars.REPOSITORY_HOST }}
username: ${{ gitea.actor }}
password: ${{ secrets.REPOSITORY_TOKEN }}
- name: Login to Docker
uses: docker/login-action@v4
uses: docker/login-action@v4.1.0
with:
registry: ${{ vars.DH_REGISTRY }}
username: ${{ secrets.DH_USERNAME }}
@@ -289,7 +289,7 @@ jobs:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v4
uses: docker/setup-buildx-action@v4.0.0
with:
driver: kubernetes
driver-opts: |
@@ -304,7 +304,7 @@ jobs:
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v6
uses: docker/metadata-action@v6.0.0
with:
images: |
${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }}
@@ -317,7 +317,7 @@ jobs:
type=semver,pattern={{major}},value=${{ needs.semantic-release.outputs.new-release-version }}
- name: Build and Push Image
uses: docker/build-push-action@v7
uses: docker/build-push-action@v7.1.0
with:
context: .
push: true

View File

@@ -12,7 +12,7 @@ jobs:
container: ghcr.io/renovatebot/renovate:43
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
- name: Renovate
run: renovate

View File

@@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
- name: Set up Node
uses: actions/setup-node@v6
uses: actions/setup-node@v6.3.0
with:
node-version: 24.14.1
node-version: 24.15.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.2.0
with:
bun-version: 1.3.12
@@ -33,7 +33,7 @@ jobs:
run: bun install --frozen-lockfile
- name: Cache Astro Build Cache
uses: actions/cache@v5
uses: actions/cache@v5.0.5
with:
path: |
.astro
@@ -67,10 +67,10 @@ jobs:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v6.0.2
- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v6.2.0
with:
python-version: '3.12.13'

View File

@@ -1,25 +1,3 @@
## [3.18.4](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.18.3...3.18.4) (2026-04-19)
### Bug Fixes
* **content:** directus published update [skip ci] ([0bb6f91](https://gitea.alexlebens.dev/alexlebens/site-profile/commit/0bb6f9120528366cbe17ece5046e144f41955771))
## [3.18.3](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.18.2...3.18.3) (2026-04-19)
### Bug Fixes
* **content:** directus published update [skip ci] ([845cf53](https://gitea.alexlebens.dev/alexlebens/site-profile/commit/845cf53c0270eb4c440f564fbec69626faca15b7))
## [3.18.2](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.18.1...3.18.2) (2026-04-16)
### Bug Fixes
* **content:** directus published update [skip ci] ([29d3c01](https://gitea.alexlebens.dev/alexlebens/site-profile/commit/29d3c01acea33dd374eb8497f071471b3f9572f9))
* **deps:** update astro monorepo ([38ccd67](https://gitea.alexlebens.dev/alexlebens/site-profile/commit/38ccd671aa7943d47980fdc1d84b6bf1b8c83c07))
## [3.18.1](https://gitea.alexlebens.dev/alexlebens/site-profile/compare/3.18.0...3.18.1) (2026-04-14)

View File

@@ -23,7 +23,7 @@
"astro-icon": "1.1.5",
"dayjs": "1.11.20",
"markdown-it": "14.1.1",
"marked": "18.0.0",
"marked": "18.0.1",
"marked-shiki": "1.2.1",
"mdast-util-to-string": "4.0.0",
"photoswipe": "5.4.4",
@@ -45,7 +45,7 @@
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "0.5.19",
"@types/markdown-it": "14.1.2",
"eslint": "10.2.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-format": "2.0.1",
@@ -54,7 +54,7 @@
"prettier-plugin-tailwindcss": "0.7.2",
"semantic-release": "25.0.3",
"semantic-release-export-data": "1.2.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
},
},
@@ -388,15 +388,15 @@
"@eslint-community/regexpp": ["@eslint-community/regexpp@4.12.2", "", {}, "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew=="],
"@eslint/config-array": ["@eslint/config-array@0.23.4", "", { "dependencies": { "@eslint/object-schema": "^3.0.4", "debug": "^4.3.1", "minimatch": "^10.2.4" } }, "sha512-lf19F24LSMfF8weXvW5QEtnLqW70u7kgit5e9PSx0MsHAFclGd1T9ynvWEMDT1w5J4Qt54tomGeAhdoAku1Xow=="],
"@eslint/config-array": ["@eslint/config-array@0.23.5", "", { "dependencies": { "@eslint/object-schema": "^3.0.5", "debug": "^4.3.1", "minimatch": "^10.2.4" } }, "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA=="],
"@eslint/config-helpers": ["@eslint/config-helpers@0.5.4", "", { "dependencies": { "@eslint/core": "^1.2.0" } }, "sha512-jJhqiY3wPMlWWO3370M86CPJ7pt8GmEwSLglMfQhjXal07RCvhmU0as4IuUEW5SJeunfItiEetHmSxCCe9lDBg=="],
"@eslint/config-helpers": ["@eslint/config-helpers@0.5.5", "", { "dependencies": { "@eslint/core": "^1.2.1" } }, "sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w=="],
"@eslint/core": ["@eslint/core@1.2.0", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-8FTGbNzTvmSlc4cZBaShkC6YvFMG0riksYWRFKXztqVdXaQbcZLXlFbSpC05s70sGEsXAw0qwhx69JiW7hQS7A=="],
"@eslint/core": ["@eslint/core@1.2.1", "", { "dependencies": { "@types/json-schema": "^7.0.15" } }, "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ=="],
"@eslint/object-schema": ["@eslint/object-schema@3.0.4", "", {}, "sha512-55lO/7+Yp0ISKRP0PsPtNTeNGapXaO085aELZmWCVc5SH3jfrqpuU6YgOdIxMS99ZHkQN1cXKE+cdIqwww9ptw=="],
"@eslint/object-schema": ["@eslint/object-schema@3.0.5", "", {}, "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw=="],
"@eslint/plugin-kit": ["@eslint/plugin-kit@0.7.0", "", { "dependencies": { "@eslint/core": "^1.2.0", "levn": "^0.4.1" } }, "sha512-ejvBr8MQCbVsWNZnCwDXjUKq40MDmHalq7cJ6e9s/qzTUFIIo/afzt1Vui9T97FM/V/pN4YsFVoed5NIa96RDg=="],
"@eslint/plugin-kit": ["@eslint/plugin-kit@0.7.1", "", { "dependencies": { "@eslint/core": "^1.2.1", "levn": "^0.4.1" } }, "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ=="],
"@floating-ui/core": ["@floating-ui/core@1.7.5", "", { "dependencies": { "@floating-ui/utils": "0.2.11" } }, "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ=="],
@@ -1238,7 +1238,7 @@
"escape-string-regexp": ["escape-string-regexp@4.0.0", "", {}, "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="],
"eslint": ["eslint@10.2.0", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", "@eslint/config-array": "^0.23.4", "@eslint/config-helpers": "^0.5.4", "@eslint/core": "^1.2.0", "@eslint/plugin-kit": "^0.7.0", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^9.1.2", "eslint-visitor-keys": "^5.0.1", "espree": "^11.2.0", "esquery": "^1.7.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "minimatch": "^10.2.4", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA=="],
"eslint": ["eslint@10.2.1", "", { "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", "@eslint/config-array": "^0.23.5", "@eslint/config-helpers": "^0.5.5", "@eslint/core": "^1.2.1", "@eslint/plugin-kit": "^0.7.1", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "ajv": "^6.14.0", "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", "eslint-scope": "^9.1.2", "eslint-visitor-keys": "^5.0.1", "espree": "^11.2.0", "esquery": "^1.7.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", "minimatch": "^10.2.4", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, "peerDependencies": { "jiti": "*" }, "optionalPeers": ["jiti"], "bin": { "eslint": "bin/eslint.js" } }, "sha512-wiyGaKsDgqXvF40P8mDwiUp/KQjE1FdrIEJsM8PZ3XCiniTMXS3OHWWUe5FI5agoCnr8x4xPrTDZuxsBlNHl+Q=="],
"eslint-compat-utils": ["eslint-compat-utils@0.6.5", "", { "dependencies": { "semver": "7.7.4" }, "peerDependencies": { "eslint": "10.0.3" } }, "sha512-vAUHYzue4YAa2hNACjB8HvUQj5yehAZgiClyFVVom9cP8z5NSFq3PwB/TtJslN2zAMgRX6FCFCjYBbQh71g5RQ=="],
@@ -1710,7 +1710,7 @@
"markdown-table": ["markdown-table@3.0.4", "", {}, "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw=="],
"marked": ["marked@18.0.0", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-2e7Qiv/HJSXj8rDEpgTvGKsP8yYtI9xXHKDnrftrmnrJPaFNM7VRb2YCzWaX4BP1iCJ/XPduzDJZMFoqTCcIMA=="],
"marked": ["marked@18.0.1", "", { "bin": { "marked": "bin/marked.js" } }, "sha512-IILJE4Aap/KIGu4ZRCzQcYMxkhumblXnbqfQe+HAD4f982wrRAsJEGKGM653yAioS6g3Yq3yOhjrUebcrtOgRA=="],
"marked-shiki": ["marked-shiki@1.2.1", "", { "peerDependencies": { "marked": "17.0.4", "shiki": "4.0.2" } }, "sha512-yHxYQhPY5oYaIRnROn98foKhuClark7M373/VpLxiy5TrDu9Jd/LsMwo8w+U91Up4oDb9IXFrP0N1MFRz8W/DQ=="],
@@ -2448,7 +2448,7 @@
"typesafe-path": ["typesafe-path@0.2.2", "", {}, "sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA=="],
"typescript": ["typescript@6.0.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ=="],
"typescript": ["typescript@6.0.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="],
"typescript-auto-import-cache": ["typescript-auto-import-cache@0.3.6", "", { "dependencies": { "semver": "7.7.4" } }, "sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ=="],

View File

@@ -1,7 +1,7 @@
{
"name": "site-profile",
"type": "module",
"version": "3.18.4",
"version": "3.18.1",
"homepage": "https://www.alexlebens.dev",
"bugs": {
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",
@@ -47,7 +47,7 @@
"astro-icon": "1.1.5",
"dayjs": "1.11.20",
"markdown-it": "14.1.1",
"marked": "18.0.0",
"marked": "18.0.1",
"marked-shiki": "1.2.1",
"mdast-util-to-string": "4.0.0",
"photoswipe": "5.4.4",
@@ -69,7 +69,7 @@
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "0.5.19",
"@types/markdown-it": "14.1.2",
"eslint": "10.2.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.7.0",
"eslint-plugin-format": "2.0.1",
@@ -78,7 +78,7 @@
"prettier-plugin-tailwindcss": "0.7.2",
"semantic-release": "25.0.3",
"semantic-release-export-data": "1.2.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2"
}
}