-
-
Notifications
You must be signed in to change notification settings - Fork 235
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
d814145
commit 8805a76
Showing
3 changed files
with
13 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,16 +25,16 @@ jobs: | |
show-progress: false | ||
|
||
- name: Initialize CodeQL 🛠️ | ||
uses: github/codeql-action/[email protected].0 | ||
uses: github/codeql-action/[email protected].4 | ||
with: | ||
queries: security-and-quality | ||
languages: ${{ matrix.language }} | ||
dependency-caching: true | ||
|
||
- name: Autobuild 📦 | ||
uses: github/codeql-action/[email protected].0 | ||
uses: github/codeql-action/[email protected].4 | ||
|
||
- name: Perform CodeQL Analysis 🧪 | ||
uses: github/codeql-action/[email protected].0 | ||
uses: github/codeql-action/[email protected].4 | ||
with: | ||
category: '/language:${{matrix.language}}' |
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
path: dist | ||
|
||
- name: Publish to Cloudflare Pages 📃 | ||
uses: cloudflare/[email protected].0 | ||
uses: cloudflare/[email protected].1 | ||
id: cf | ||
with: | ||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
|
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 |
---|---|---|
|
@@ -88,15 +88,15 @@ jobs: | |
run: npm run build | ||
|
||
- name: Upload built application artifact ⬆️🐧🍎🪟 | ||
uses: actions/upload-artifact@v4.5.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
id: artifact | ||
with: | ||
compression-level: 0 | ||
name: ${{ env.ARTIFACT_NAME }} | ||
path: ${{ env.WORKING_DIR }}/${{ env.ARTIFACTS_PATH }} | ||
|
||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v2.1.0 | ||
uses: actions/attest-build-provenance@v2.2.0 | ||
continue-on-error: true | ||
with: | ||
subject-name: ${{ env.ARTIFACT_NAME }} | ||
|
@@ -191,7 +191,7 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Build images 🛠️ | ||
uses: docker/build-push-action@v6.11.0 | ||
uses: docker/build-push-action@v6.12.0 | ||
id: image | ||
with: | ||
context: . | ||
|
@@ -210,22 +210,22 @@ jobs: | |
${{ needs.docker_inputs.outputs.tags }} | ||
- name: Upload Docker image as artifact ⬆️📦 | ||
uses: actions/upload-artifact@v4.5.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
id: artifact | ||
with: | ||
compression-level: 0 | ||
name: ${{ env.ARTIFACT_NAME }} | ||
path: docker_image.tar | ||
|
||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v2.1.0 | ||
uses: actions/attest-build-provenance@v2.2.0 | ||
continue-on-error: true | ||
with: | ||
subject-name: ${{ env.ARTIFACT_NAME }} | ||
subject-digest: sha256:${{ steps.artifact.outputs.artifact-digest }} | ||
|
||
- name: Upload cache artifact ⬆️⚙️ | ||
uses: actions/upload-artifact@v4.5.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
if: ${{ inputs.push }} | ||
with: | ||
compression-level: 0 | ||
|
@@ -255,15 +255,15 @@ jobs: | |
docker cp $(docker create --name jf $IMAGE_SHA):$ASSETS/ ./dist | ||
- name: Upload client artifact ⬆️💻 | ||
uses: actions/upload-artifact@v4.5.0 | ||
uses: actions/upload-artifact@v4.6.0 | ||
id: artifact | ||
with: | ||
compression-level: 0 | ||
name: ${{ env.ARTIFACT_NAME }} | ||
path: dist | ||
|
||
- name: Create provenance attestation 🔏 | ||
uses: actions/attest-build-provenance@v2.1.0 | ||
uses: actions/attest-build-provenance@v2.2.0 | ||
continue-on-error: true | ||
with: | ||
subject-name: ${{ env.ARTIFACT_NAME }} | ||
|
@@ -310,7 +310,7 @@ jobs: | |
password: ${{ secrets.JF_BOT_TOKEN }} | ||
|
||
- name: Create multiplatform image ${{ inputs.push && 'and push 🛠️⬆️' || '🛠️' }} | ||
uses: docker/build-push-action@v6.11.0 | ||
uses: docker/build-push-action@v6.12.0 | ||
id: image | ||
with: | ||
context: . | ||
|