From e13d82f52ef8c416fce22b271492c44456a35f06 Mon Sep 17 00:00:00 2001 From: Matthew Hambley Date: Mon, 12 Jan 2026 16:36:06 +0000 Subject: [PATCH] Remove insecure workflow This workflow was flagged as insecure by an automatic check. I'm not sure what it's for, some sort of container I think. So the simplest solution is to get rid of it. --- .github/workflows/picasso_build.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/picasso_build.yml diff --git a/.github/workflows/picasso_build.yml b/.github/workflows/picasso_build.yml deleted file mode 100644 index 0195cfd02..000000000 --- a/.github/workflows/picasso_build.yml +++ /dev/null @@ -1,17 +0,0 @@ - -name: Picasso Build - -on: workflow_dispatch -# It's undesirable to trigger from PRs because it needs permissions for the forked repo, -# which have possible security implications. -#on: [push, pull_request] - -jobs: - build-images: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Build my image - uses: rhattersley/picasso-build-images-action@v1 - with: - images: '[{"name": "MyImage", "path": "envs/picasso/image.yml", "tag": "latest"}]'