Skip to content

chore(deps): update dependency qbittorrent/qbittorrent to v5 #566

chore(deps): update dependency qbittorrent/qbittorrent to v5

chore(deps): update dependency qbittorrent/qbittorrent to v5 #566

Workflow file for this run

name: qBittorrent
on:
push:
paths:
- .github/workflows/qbittorrent.yml
- contexts/qbittorrent/*
pull_request:
paths:
- .github/workflows/qbittorrent.yml
- contexts/qbittorrent/*
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
# renovate: datasource=github-tags depName=qbittorrent/qBittorrent extractVersion=^release-(?<version>.*)$
QBITTORRENT_VERSION: "5.0.2"
jobs:
versions:
name: Versions
outputs:
QBITTORRENT_VERSION: ${{ env.QBITTORRENT_VERSION }}
runs-on: ubuntu-24.04
steps:
- name: Generate outputs
run: |
echo "QBITTORRENT_VERSION=${{ env.QBITTORRENT_VERSION }}" >> $GITHUB_OUTPUT
build-publish:
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: |
QBITTORRENT_VERSION=${{ needs.versions.outputs.QBITTORRENT_VERSION }}
context: contexts/qbittorrent
image-description: The qBittorrent project aims to provide an open-source software alternative to µTorrent.
image-name: oliversalzburg/containers/qbittorrent
image-tag: ${{ needs.versions.outputs.QBITTORRENT_VERSION }}
image-title: qBittorrent
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
test:
name: Test
needs:
- versions
- build-publish
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Run container with image
run: |
.scripts/test.sh podman run --rm ghcr.io/oliversalzburg/containers/qbittorrent:${{ needs.versions.outputs.QBITTORRENT_VERSION }}
qa-successful:
if: ( success() || failure() )
name: Evaluate QA results
needs:
- build-publish
- test
runs-on: ubuntu-24.04
steps:
- name: Success
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failure
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1