Skip to content

Commit 4d68b00

Browse files
andrinofffloatpanebot
authored andcommitted
ci: use plugins instead of list-plugins (#1468)
## What? Uses `plugins` instead of the depreciated `list-plugins` ## Why? CI failures Signed-off-by: drew <me@andrinoff.com> (cherry picked from commit 02e483c)
1 parent a0f352f commit 4d68b00

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/bot-check-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
lint: "Run `make lint` locally.",
6262
'mod-tidy': "Run `go mod tidy` and commit `go.mod`/`go.sum`.",
6363
nix: "Run `nix flake check --no-build` locally.",
64-
snap: "Validate `snapcraft.yaml` with `snapcraft list-plugins`.",
64+
snap: "Validate `snapcraft.yaml` with `snapcraft plugins`.",
6565
flatpak: "Validate the Flatpak manifest YAML structure.",
6666
website: "Run `cd docs && npm ci && npx docusaurus build`.",
6767
'lua-plugins': "Run `luac -p plugins/*.lua` to check Lua syntax.",

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
run: |
116116
sudo snap install snapcraft --classic
117117
# Verify snapcraft can parse the project file
118-
snapcraft list-plugins
118+
snapcraft plugins
119119
# Validate YAML structure and required fields
120120
python3 << 'PYEOF'
121121
import yaml, sys

0 commit comments

Comments
 (0)