-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bc441c
commit 3dcbc0a
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,13 +81,13 @@ jobs: | |
run: npm run build | ||
|
||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v1.3.3 | ||
uses: actions/attest-build-provenance@v1.4.0 | ||
continue-on-error: true | ||
with: | ||
subject-path: ${{ env.ARTIFACTS_PATH }} | ||
|
||
- name: Upload built application artifact ⬆️🐧🍎🪟 | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
with: | ||
compression-level: 0 | ||
name: jellyfin-vue_${{ matrix.platform }} | ||
|
@@ -172,13 +172,13 @@ jobs: | |
show-progress: false | ||
|
||
- name: Configure QEMU ⚙️ | ||
uses: docker/setup-qemu-action@v3.1.0 | ||
uses: docker/setup-qemu-action@v3.2.0 | ||
|
||
- name: Configure Docker Buildx ⚙️ | ||
uses: docker/setup-buildx-action@v3.4.0 | ||
uses: docker/setup-buildx-action@v3.6.1 | ||
|
||
- name: Build images 🛠️ | ||
uses: docker/build-push-action@v6.4.1 | ||
uses: docker/build-push-action@v6.6.0 | ||
id: image | ||
with: | ||
context: . | ||
|
@@ -194,20 +194,20 @@ jobs: | |
${{ needs.docker_inputs.outputs.tags }} | ||
- name: Upload Docker image as artifact ⬆️📦 | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
with: | ||
compression-level: 0 | ||
name: docker_image-linux_${{ matrix.platform }} | ||
path: docker_image.tar | ||
|
||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v1.3.3 | ||
uses: actions/attest-build-provenance@v1.4.0 | ||
continue-on-error: true | ||
with: | ||
subject-path: docker_image.tar | ||
|
||
- name: Upload cache artifact ⬆️⚙️ | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
if: ${{ inputs.push }} | ||
with: | ||
compression-level: 0 | ||
|
@@ -232,13 +232,13 @@ jobs: | |
docker cp $(docker create --name jf $(docker images --filter=reference='${{ env.REGISTRY_IMAGE }}' -q | head -n 1)):/usr/share/nginx/html/ ./dist | ||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v1.3.3 | ||
uses: actions/attest-build-provenance@v1.4.0 | ||
continue-on-error: true | ||
with: | ||
subject-path: dist | ||
|
||
- name: Upload client artifact ⬆️💻 | ||
uses: actions/[email protected].4 | ||
uses: actions/[email protected].6 | ||
with: | ||
compression-level: 0 | ||
name: frontend | ||
|
@@ -265,26 +265,26 @@ jobs: | |
show-progress: false | ||
|
||
- name: Configure QEMU ⚙️ | ||
uses: docker/setup-qemu-action@v3.1.0 | ||
uses: docker/setup-qemu-action@v3.2.0 | ||
|
||
- name: Configure Docker Buildx ⚙️ | ||
uses: docker/setup-buildx-action@v3.4.0 | ||
uses: docker/setup-buildx-action@v3.6.1 | ||
|
||
- name: Login to Docker Hub 🔑 | ||
uses: docker/login-action@v3.2.0 | ||
uses: docker/login-action@v3.3.0 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry 🔑 | ||
uses: docker/login-action@v3.2.0 | ||
uses: docker/login-action@v3.3.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.JF_BOT_TOKEN }} | ||
|
||
- name: Create multiplatform image ${{ inputs.push && 'and push 🛠️⬆️' || '🛠️' }} | ||
uses: docker/build-push-action@v6.4.1 | ||
uses: docker/build-push-action@v6.6.0 | ||
id: image | ||
with: | ||
context: . | ||
|