This commit is contained in:
dependabot[bot] 2026-03-09 21:23:35 +00:00 committed by GitHub
commit e9d4952f1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 10 deletions

View File

@ -37,7 +37,7 @@ jobs:
run: npx quartz build -d docs -v run: npx quartz build -d docs -v
- name: Upload build artifact - name: Upload build artifact
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
with: with:
name: preview-build name: preview-build
path: public path: public

View File

@ -18,7 +18,7 @@ jobs:
name: Deploy Preview to Cloudflare Pages name: Deploy Preview to Cloudflare Pages
steps: steps:
- name: Download build artifact - name: Download build artifact
uses: actions/download-artifact@v7 uses: actions/download-artifact@v8
id: preview-build-artifact id: preview-build-artifact
with: with:
name: preview-build name: preview-build

View File

@ -25,11 +25,11 @@ jobs:
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Inject slug/short variables - name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v5.4.0 uses: rlespinasse/github-slug-action@v5.5.0
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v4
with: with:
install: true install: true
driver-opts: | driver-opts: |
@ -37,9 +37,9 @@ jobs:
network=host network=host
- name: Install cosign - name: Install cosign
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v4.0.0 uses: sigstore/cosign-installer@v4.1.0
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v4
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
with: with:
registry: ghcr.io registry: ghcr.io
@ -49,7 +49,7 @@ jobs:
- name: Extract metadata tags and labels on PRs - name: Extract metadata tags and labels on PRs
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
id: meta-pr id: meta-pr
uses: docker/metadata-action@v5 uses: docker/metadata-action@v6
with: with:
images: ghcr.io/${{ env.OWNER_LOWERCASE }}/quartz images: ghcr.io/${{ env.OWNER_LOWERCASE }}/quartz
tags: | tags: |
@ -59,7 +59,7 @@ jobs:
- name: Extract metadata tags and labels for main, release or tag - name: Extract metadata tags and labels for main, release or tag
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v6
with: with:
flavor: | flavor: |
latest=auto latest=auto
@ -76,7 +76,7 @@ jobs:
- name: Build and push Docker image - name: Build and push Docker image
id: build-and-push id: build-and-push
uses: docker/build-push-action@v6 uses: docker/build-push-action@v7
with: with:
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
build-args: | build-args: |