diff --git a/.github/workflows/main-build.yaml b/.github/workflows/main-build.yaml index 05e2e34..404da96 100644 --- a/.github/workflows/main-build.yaml +++ b/.github/workflows/main-build.yaml @@ -48,7 +48,7 @@ jobs: steps: - name: Clone the repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Based on https://github.com/orgs/community/discussions/25678 - name: Delete huge unnecessary tools folder diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml index b520f68..a1eb174 100644 --- a/.github/workflows/pr-build.yaml +++ b/.github/workflows/pr-build.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: Clone the repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Based on https://github.com/orgs/community/discussions/25678 - name: Delete huge unnecessary tools folder diff --git a/Containerfile b/Containerfile index 29239ef..89bb138 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora-bootc:42@sha256:09fc42f1db6487dd47b773a852672d3a6977753ad8e8fb02a2b490af8cb6bf2d AS builder +FROM quay.io/fedora/fedora-bootc:42@sha256:2c48b779ef9e6c9a073f741167d56d9475c7fccf3d834d5c650f78eeacb330ae AS builder # https://bugzilla.redhat.com/show_bug.cgi?id=2381864 RUN dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2025-77e737a366 RUN dnf install -y --exclude rootfiles @kde-desktop-environment @development-tools @container-management @system-tools @games; dnf clean all diff --git a/renovate.json b/renovate.json index 36e09e2..8f44e73 100644 --- a/renovate.json +++ b/renovate.json @@ -4,7 +4,10 @@ "github>platform-engineering-org/.github", "schedule:daily" ], - "baseBranches": ["main", "release-42"], + "baseBranchPatterns": [ + "main", + "release-42" + ], "ignorePresets": [ "group:all" ], @@ -19,13 +22,6 @@ ], "groupName": "{{depName}} Docker updates" } - , - { - "description": "Disable major version updates on release-42", - "matchUpdateTypes": ["major"], - "matchBaseBranches": ["release-42"], - "enabled": false - } ], "separateMultipleMajor": true, "pruneStaleBranches": false,