mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-06 17:52:21 +02:00
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [dagger/dagger](https://redirect.github.com/dagger/dagger) | patch | `0.20.5` → `0.20.6` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/7) for more information. --- ### Release Notes <details> <summary>dagger/dagger (dagger/dagger)</summary> ### [`v0.20.6`](https://redirect.github.com/dagger/dagger/blob/HEAD/CHANGELOG.md#v0206---2026-04-15) [Compare Source](https://redirect.github.com/dagger/dagger/compare/v0.20.5...v0.20.6) ##### Fixed - Fix toolchains being loaded or resolved from the wrong source, which could unexpectedly affect command behavior, break custom path overrides, or cause confusing missing-file errors when using `dagger -m <remote>@​<ref>` by [@​shykes](https://redirect.github.com/shykes) + [@​grouville](https://redirect.github.com/grouville) + [@​tiborvass](https://redirect.github.com/tiborvass) + [@​marcosnils](https://redirect.github.com/marcosnils) + [@​eunomie](https://redirect.github.com/eunomie) in [#​12983](https://redirect.github.com/dagger/dagger/pull/12983) [#​12949](https://redirect.github.com/dagger/dagger/pull/12949) [#​12980](https://redirect.github.com/dagger/dagger/pull/12980) [#​12985](https://redirect.github.com/dagger/dagger/pull/12985) [#​12986](https://redirect.github.com/dagger/dagger/pull/12986) - Fix `Changeset` directory comparisons failing with `fatal: not a git repository` when running inside Git worktrees by [@​eunomie](https://redirect.github.com/eunomie) in [#​12950](https://redirect.github.com/dagger/dagger/pull/12950) - Fix toolchain generator handling so excluded generators stay excluded, `dagger check generated` catches out-of-date files again, and PHP SDK bindings stay in sync by [@​shykes](https://redirect.github.com/shykes) + [@​grouville](https://redirect.github.com/grouville) + [@​tiborvass](https://redirect.github.com/tiborvass) in [#​12958](https://redirect.github.com/dagger/dagger/pull/12958) [#​12962](https://redirect.github.com/dagger/dagger/pull/12962) [#​12984](https://redirect.github.com/dagger/dagger/pull/12984) - Fix generator `.changes` and `.isEmpty` reporting misleading results before `.run()`; they now fail clearly instead of pretending there were no changes by [@​shykes](https://redirect.github.com/shykes) + [@​tiborvass](https://redirect.github.com/tiborvass) in [#​12959](https://redirect.github.com/dagger/dagger/pull/12959) ##### What to do next? - Read the [documentation](https://docs.dagger.io) - Join our [Discord server](https://discord.gg/dagger-io) - Follow us on [Twitter](https://twitter.com/dagger_io) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Never, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/cloudnative-pg/plugin-barman-cloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjAuMiIsInVwZGF0ZWRJblZlciI6IjQzLjEyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWF0ZWQiLCJuby1pc3N1ZSJdfQ==--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
70 lines
2.0 KiB
YAML
70 lines
2.0 KiB
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: write
|
|
steps:
|
|
- name: Cleanup Disk
|
|
uses: jlumbroso/free-disk-space@v1.3.1
|
|
with:
|
|
android: true
|
|
dotnet: true
|
|
haskell: true
|
|
tool-cache: true
|
|
large-packages: false
|
|
swap-storage: false
|
|
- name: Cleanup docker cache
|
|
run: |
|
|
echo "-------------Disk info before cleanup----------------"
|
|
df -h
|
|
echo "-----------------------------------------------------"
|
|
docker system prune -a -f
|
|
echo "-------------Disk info after cleanup----------------"
|
|
df -h
|
|
echo "-----------------------------------------------------"
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
# We need the full history for the commitlint task
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- name: Install QEMU static binaries
|
|
uses: docker/setup-qemu-action@v4
|
|
- name: Install Task
|
|
uses: arduino/setup-task@v2
|
|
- name: Install Dagger
|
|
env:
|
|
# renovate: datasource=github-tags depName=dagger/dagger versioning=semver
|
|
DAGGER_VERSION: 0.20.6
|
|
run: |
|
|
curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh
|
|
- name: Run CI task
|
|
run: |
|
|
task ci
|
|
- name: Write manifest
|
|
run: |
|
|
task manifest
|
|
- name: Publish images
|
|
if: |
|
|
github.event_name == 'workflow_dispatch' ||
|
|
github.event.pull_request.head.repo.full_name == github.repository
|
|
env:
|
|
REGISTRY_USER: ${{ github.actor }}
|
|
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
task publish
|
|
- name: Attach manifest to workflow run
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: manifest.yaml
|
|
path: ./manifest.yaml
|