Skip to content

Commit

Permalink
chore(deps): update ci (#2462)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 14, 2024
1 parent 915123f commit f5c68ff
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/__codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ jobs:

steps:
- name: Checkout repository ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit }}
show-progress: false

- name: Initialize CodeQL 🛠️
uses: github/codeql-action/init@v3.26.6
uses: github/codeql-action/init@v3.26.12
with:
queries: security-and-quality
languages: ${{ matrix.language }}

- name: Autobuild 📦
uses: github/codeql-action/autobuild@v3.26.6
uses: github/codeql-action/autobuild@v3.26.12

- name: Perform CodeQL Analysis 🧪
uses: github/codeql-action/analyze@v3.26.6
uses: github/codeql-action/analyze@v3.26.12
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 @@ -38,7 +38,7 @@ jobs:
path: dist

- name: Publish to Cloudflare Pages 📃
uses: cloudflare/wrangler-action@v3.7.0
uses: cloudflare/wrangler-action@v3.9.0
id: cf
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/__job_messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
echo "EOF" >> $GITHUB_ENV
- name: Push comment to Pull Request 🔼
uses: thollander/actions-comment-pull-request@v2.5.0
uses: thollander/actions-comment-pull-request@v3.0.0
if: ${{ inputs.comment && steps.compose.conclusion == 'success' }}
with:
GITHUB_TOKEN: ${{ secrets.JF_BOT_TOKEN }}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/__package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
runs-on: ${{ matrix.platform }}-latest
steps:
- name: Checkout ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit || github.sha }}
show-progress: false

- name: Setup node environment ⚙️
uses: actions/setup-node@v4.0.3
uses: actions/setup-node@v4.0.4
with:
node-version: 20
check-latest: true
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
subject-path: ${{ env.WORKING_DIR }}/${{ env.ARTIFACTS_PATH }}

- name: Upload built application artifact ⬆️🐧🍎🪟
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
compression-level: 0
name: jellyfin-vue_${{ runner.os }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:

steps:
- name: Checkout ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit || github.sha }}
show-progress: false
Expand All @@ -182,10 +182,10 @@ jobs:
uses: docker/setup-qemu-action@v3.2.0

- name: Configure Docker Buildx ⚙️
uses: docker/setup-buildx-action@v3.6.1
uses: docker/setup-buildx-action@v3.7.1

- name: Build images 🛠️
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
id: image
with:
context: .
Expand All @@ -204,7 +204,7 @@ jobs:
${{ needs.docker_inputs.outputs.tags }}
- name: Upload Docker image as artifact ⬆️📦
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
compression-level: 0
name: docker_image-linux_${{ matrix.platform }}
Expand All @@ -217,7 +217,7 @@ jobs:
subject-path: docker_image.tar

- name: Upload cache artifact ⬆️⚙️
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
if: ${{ inputs.push }}
with:
compression-level: 0
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
subject-path: dist

- name: Upload client artifact ⬆️💻
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
with:
compression-level: 0
name: frontend
Expand All @@ -270,7 +270,7 @@ jobs:
path: /tmp/${{ env.REGISTRY_IMAGE }}/cache/

- name: Checkout ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit || github.sha }}
show-progress: false
Expand All @@ -279,7 +279,7 @@ jobs:
uses: docker/setup-qemu-action@v3.2.0

- name: Configure Docker Buildx ⚙️
uses: docker/setup-buildx-action@v3.6.1
uses: docker/setup-buildx-action@v3.7.1

- name: Login to Docker Hub 🔑
uses: docker/login-action@v3.3.0
Expand All @@ -295,7 +295,7 @@ jobs:
password: ${{ secrets.JF_BOT_TOKEN }}

- name: Create multiplatform image ${{ inputs.push && 'and push 🛠️⬆️' || '🛠️' }}
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
id: image
with:
context: .
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/__quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit }}
show-progress: false
Expand Down Expand Up @@ -42,13 +42,13 @@ jobs:

steps:
- name: Checkout ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit }}
show-progress: false

- name: Setup node environment ⚙️
uses: actions/setup-node@v4.0.3
uses: actions/setup-node@v4.0.4
with:
node-version: 20
check-latest: true
Expand All @@ -66,7 +66,7 @@ jobs:

steps:
- name: Checkout ⬇️
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.commit }}
show-progress: false
Expand Down

0 comments on commit f5c68ff

Please sign in to comment.