Compare commits

..

10 Commits

Author SHA1 Message Date
alexlebens e7808f7a31 ci: use ubuntu-latest 2026-05-22 17:03:23 -05:00
alexlebens 1bd717bdb6 Merge pull request 'Main' (#478) from main into release
Reviewed-on: #478
2026-05-22 22:01:42 +00:00
alexlebens 526d5c947b Merge pull request 'chore(deps): update dependency node to v24.16.0' (#474) from renovate/node-24.x into main
Reviewed-on: #474
2026-05-22 21:58:14 +00:00
alexlebens 6543c7119a Merge pull request 'chore(deps): update docker/login-action action to v4.2.0' (#475) from renovate/docker-login-action-4.x into main
Reviewed-on: #475
2026-05-22 21:56:44 +00:00
alexlebens 75c702fc5d Merge pull request 'chore(deps): update docker/metadata-action action to v6.1.0' (#476) from renovate/docker-metadata-action-6.x into main
Reviewed-on: #476
2026-05-22 21:56:35 +00:00
alexlebens 88f18323c6 Merge pull request 'chore(deps): update docker/setup-buildx-action action to v4.1.0' (#477) from renovate/docker-setup-buildx-action-4.x into main
Reviewed-on: #477
2026-05-22 21:56:27 +00:00
renovate-bot 8de59b109e chore(deps): update docker/setup-buildx-action action to v4.1.0
test-build / guarddog (pull_request) Successful in 1m17s
test-build / build (pull_request) Successful in 2m8s
2026-05-22 20:43:01 +00:00
renovate-bot ffa0d864f2 chore(deps): update docker/metadata-action action to v6.1.0
test-build / guarddog (pull_request) Successful in 4m23s
test-build / build (pull_request) Successful in 4m57s
2026-05-22 20:42:56 +00:00
renovate-bot c08e5f4622 chore(deps): update docker/login-action action to v4.2.0
test-build / build (pull_request) Successful in 5m47s
test-build / guarddog (pull_request) Successful in 8m50s
2026-05-22 20:42:37 +00:00
renovate-bot a57d2e0057 chore(deps): update dependency node to v24.16.0
test-build / build (pull_request) Failing after 4m28s
test-build / guarddog (pull_request) Successful in 12m2s
2026-05-22 20:42:25 +00:00
2 changed files with 18 additions and 18 deletions
+15 -15
View File
@@ -19,7 +19,7 @@ on:
jobs:
build:
runs-on: ubuntu-js
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
@@ -29,7 +29,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6.4.0
with:
node-version: 24.15.0
node-version: 24.16.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2.2.0
@@ -72,7 +72,7 @@ jobs:
image: true
guarddog:
runs-on: ubuntu-js
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
@@ -110,7 +110,7 @@ jobs:
semantic-release:
needs: [ build, guarddog ]
runs-on: ubuntu-js
runs-on: ubuntu-latest
if: |
(github.event_name == 'push') ||
(github.event_name == 'workflow_dispatch' && github.event.inputs['directus-release'] == 'true')
@@ -135,7 +135,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6.4.0
with:
node-version: 24.15.0
node-version: 24.16.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2.2.0
@@ -155,7 +155,7 @@ jobs:
bun run semantic-release
release-harbor:
runs-on: ubuntu-js
runs-on: ubuntu-latest
needs: semantic-release
if: ${{ needs.semantic-release.outputs.new-release-published == 'true' }}
steps:
@@ -165,14 +165,14 @@ jobs:
ref: release
- name: Login to Harbor Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ${{ vars.REGISTRY_HOST }}
username: ${{ vars.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_SECRET }}
- name: Login to Docker
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.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.0.0
uses: docker/setup-buildx-action@v4.1.0
with:
driver: kubernetes
driver-opts: |
@@ -200,7 +200,7 @@ jobs:
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v6.0.0
uses: docker/metadata-action@v6.1.0
with:
images: |
${{ vars.REGISTRY_HOST }}/images/site-profile
@@ -257,7 +257,7 @@ jobs:
image: true
release-gitea:
runs-on: ubuntu-js
runs-on: ubuntu-latest
needs: [ semantic-release, release-harbor ]
if: |
always() &&
@@ -269,14 +269,14 @@ jobs:
ref: release
- name: Login to Gitea Registry
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.0
with:
registry: ${{ vars.REPOSITORY_HOST }}
username: ${{ gitea.actor }}
password: ${{ secrets.REPOSITORY_TOKEN }}
- name: Login to Docker
uses: docker/login-action@v4.1.0
uses: docker/login-action@v4.2.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.0.0
uses: docker/setup-buildx-action@v4.1.0
with:
driver: kubernetes
driver-opts: |
@@ -304,7 +304,7 @@ jobs:
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v6.0.0
uses: docker/metadata-action@v6.1.0
with:
images: |
${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }}
+3 -3
View File
@@ -14,7 +14,7 @@ on:
jobs:
build:
runs-on: ubuntu-js
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
@@ -22,7 +22,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v6.4.0
with:
node-version: 24.15.0
node-version: 24.16.0
- name: Set up Bun
uses: oven-sh/setup-bun@v2.2.0
@@ -64,7 +64,7 @@ jobs:
image: true
guarddog:
runs-on: ubuntu-js
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2