ci: use plugins instead of list-plugins (#1468)

Drew Smirnoff created

## What?

Uses `plugins` instead of the depreciated `list-plugins`

## Why?

CI failures

Signed-off-by: drew <me@andrinoff.com>

Change summary

.github/workflows/bot-check-ci.yml | 2 +-
.github/workflows/ci.yml           | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

.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.",

.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