mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
build(deps): bump the github group with 4 updates (#1324)
This commit is contained in:
parent
89c146b762
commit
c060814022
2 changed files with 11 additions and 7 deletions
4
.github/workflows/eslint.yml
vendored
4
.github/workflows/eslint.yml
vendored
|
@ -57,13 +57,13 @@ jobs:
|
||||||
run: cat results.sarif
|
run: cat results.sarif
|
||||||
|
|
||||||
# Uploads results.sarif to GitHub repository using the upload-sarif action
|
# Uploads results.sarif to GitHub repository using the upload-sarif action
|
||||||
- uses: github/codeql-action/upload-sarif@v2
|
- uses: github/codeql-action/upload-sarif@v3
|
||||||
with:
|
with:
|
||||||
# Path to SARIF file relative to the root of the repository
|
# Path to SARIF file relative to the root of the repository
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
category: ESLint
|
category: ESLint
|
||||||
|
|
||||||
- uses: CatChen/eslint-suggestion-action@v2
|
- uses: CatChen/eslint-suggestion-action@v3
|
||||||
with:
|
with:
|
||||||
request-changes: true
|
request-changes: true
|
||||||
fail-check: false
|
fail-check: false
|
||||||
|
|
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
@ -213,14 +213,17 @@ jobs:
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
- name: Export digest
|
- name: Export digest
|
||||||
|
id: digest-prep
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /tmp/digests
|
mkdir -p /tmp/digests
|
||||||
digest="${{ steps.docker_build.outputs.digest }}"
|
digest="${{ steps.docker_build.outputs.digest }}"
|
||||||
touch "/tmp/digests/${digest#sha256:}"
|
echo "manifest-hash=${digest#sha256:}" >> "$GITHUB_OUTPUT"
|
||||||
|
touch "/tmp/digests/${digest#sha256:}"
|
||||||
|
|
||||||
- name: Upload digest
|
- name: Upload digest
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: digests
|
name: docker-digests-${{ steps.digest-prep.outputs.manifest-hash }}
|
||||||
path: /tmp/digests/*
|
path: /tmp/digests/*
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
@ -232,10 +235,11 @@ jobs:
|
||||||
needs: [docker, test]
|
needs: [docker, test]
|
||||||
steps:
|
steps:
|
||||||
- name: Download digests
|
- name: Download digests
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: digests
|
|
||||||
path: /tmp/digests
|
path: /tmp/digests
|
||||||
|
pattern: docker-digests-*
|
||||||
|
merge-multiple: true
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue