From 02e483c3cd4271b14e88ca205cd1d2f5908cda2d Mon Sep 17 00:00:00 2001 From: Drew Smirnoff Date: Mon, 15 Jun 2026 14:35:42 +0400 Subject: [PATCH] ci: use plugins instead of list-plugins (#1468) ## What? Uses `plugins` instead of the depreciated `list-plugins` ## Why? CI failures Signed-off-by: drew --- .github/workflows/bot-check-ci.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bot-check-ci.yml b/.github/workflows/bot-check-ci.yml index 7d854809854b63afcc32df08e1528cf7848228d1..67931d47803899f3a9a23f71e5ab8f5570d6ab0b 100644 --- a/.github/workflows/bot-check-ci.yml +++ b/.github/workflows/bot-check-ci.yml @@ -61,7 +61,7 @@ jobs: lint: "Run `make lint` locally.", 'mod-tidy': "Run `go mod tidy` and commit `go.mod`/`go.sum`.", nix: "Run `nix flake check --no-build` locally.", - snap: "Validate `snapcraft.yaml` with `snapcraft list-plugins`.", + snap: "Validate `snapcraft.yaml` with `snapcraft plugins`.", flatpak: "Validate the Flatpak manifest YAML structure.", website: "Run `cd docs && npm ci && npx docusaurus build`.", 'lua-plugins': "Run `luac -p plugins/*.lua` to check Lua syntax.", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3409de19b8738d2116db43f628a615ea2b32b89e..cc6ff705a5adce8c3bb37fb025bc339d3d308f32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: run: | sudo snap install snapcraft --classic # Verify snapcraft can parse the project file - snapcraft list-plugins + snapcraft plugins # Validate YAML structure and required fields python3 << 'PYEOF' import yaml, sys