chore(deps): update dependency prowlarr/prowlarr to v1.23.1.4708 #365
Workflow file for this run
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
name: Prowlarr | |
on: | |
push: | |
paths: | |
- .github/workflows/prowlarr.yml | |
- contexts/prowlarr/* | |
pull_request: | |
paths: | |
- .github/workflows/prowlarr.yml | |
- contexts/prowlarr/* | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
# renovate: datasource=github-releases depName=Prowlarr/Prowlarr versioning=loose | |
PROWLARR_VERSION: "1.23.1.4708" | |
jobs: | |
versions: | |
name: Versions | |
outputs: | |
PROWLARR_VERSION: ${{ env.PROWLARR_VERSION }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Generate outputs | |
run: | | |
echo "PROWLARR_VERSION=${{ env.PROWLARR_VERSION }}" >> $GITHUB_OUTPUT | |
build-publish: | |
# We don't need to run this on Renovate PRs. We will already test the `renovate/foo` branch. | |
if: github.event_name != 'pull_request' || github.actor != 'renovate[bot]' | |
name: Call Build | |
needs: versions | |
permissions: | |
attestations: write | |
contents: read | |
id-token: write | |
packages: write | |
security-events: write | |
uses: oliversalzburg/workflows/.github/workflows/publish-oci.yml@main | |
with: | |
build-args: | | |
PROWLARR_VERSION=${{ needs.versions.outputs.PROWLARR_VERSION }} | |
context: contexts/prowlarr | |
image-description: The Ultimate Indexer Manager | |
image-name: oliversalzburg/containers/prowlarr | |
image-tag: ${{ needs.versions.outputs.PROWLARR_VERSION }} | |
image-title: Prowlarr | |
is-latest: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
push: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
with-sarif: false | |
with-sbom: false | |
qa-successful: | |
if: ( success() || failure() ) | |
name: Evaluate QA results | |
needs: build-publish | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Success | |
if: ${{ !(contains(needs.*.result, 'failure')) }} | |
run: exit 0 | |
- name: Failure | |
if: ${{ contains(needs.*.result, 'failure') }} | |
run: exit 1 | |
delete-untagged: | |
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
name: Clean up layers | |
needs: qa-successful | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Delete untagged layers | |
uses: Chizkiyahu/delete-untagged-ghcr-action@e8c780ca2d589797e657691fc16bffe066714890 # v4 | |
with: | |
token: ${{ github.token }} | |
repository_owner: ${{ github.repository_owner }} | |
repository: ${{ github.repository }} | |
package_name: containers/prowlarr | |
untagged_only: true | |
owner_type: user |