Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update ci #2562

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/__codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
show-progress: false

- name: Initialize CodeQL 🛠️
uses: github/codeql-action/[email protected].0
uses: github/codeql-action/[email protected].5
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].5

- name: Perform CodeQL Analysis 🧪
uses: github/codeql-action/[email protected].0
uses: github/codeql-action/[email protected].5
with:
category: '/language:${{matrix.language}}'
2 changes: 1 addition & 1 deletion .github/workflows/__deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/__package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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.13.0
id: image
with:
context: .
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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.13.0
id: image
with:
context: .
Expand Down
Loading