From 923ab5a9a7d3f918c08ed2e36b91b54949e45ab5 Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 13 Sep 2023 09:37:24 +0200 Subject: [PATCH 1/2] (actions) cleanup untagged containers These can be created in case of failing actions --- .../workflows/cleanup_untagged_containers.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/cleanup_untagged_containers.yml diff --git a/.github/workflows/cleanup_untagged_containers.yml b/.github/workflows/cleanup_untagged_containers.yml new file mode 100644 index 000000000..968f11687 --- /dev/null +++ b/.github/workflows/cleanup_untagged_containers.yml @@ -0,0 +1,22 @@ +name: Cleanup untagged containers + +on: + schedule: + - cron: '0 2 * * *' + workflow_dispatch: + +jobs: + delete_untagged_containers: + name: Delete untagged containers + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + package_name: ["tue-env-ros-noetic", "tue-env-ros-galactic", "tue-env-ros-humble"] + steps: + - uses: actions/delete-package-versions@v4 + with: + package-name: ${{ matrix.package_name }} + package-type: container + delete-only-untagged-versions: true + min-versions-to-keep: 0 From 7132e83bb22eb729e2413ecf390a8515912ce62a Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 13 Sep 2023 09:38:40 +0200 Subject: [PATCH 2/2] Bump VERSION to 1.12.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0eed1a29e..f8f4f03b3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.12.0 +1.12.1