Skip to content

✨(core): Add external-secret-store command #13

✨(core): Add external-secret-store command

✨(core): Add external-secret-store command #13

# Copyright (C) 2024 Alexandre Nicolaie ([email protected])
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------
---
name: 🦀 Lint & Build kubevault
on:
pull_request:
types: [opened, synchronize]
paths:
- Cargo.{lock,toml}
- src/**
- tests/**
- .github/workflows/merge_group,pull_request.rust.yaml
- .github/workflows/workflow_call.rust.*.yaml
permissions: {}
jobs:
rust-lint:
name: 🦀
permissions:
contents: read
pull-requests: write
uses: ./.github/workflows/workflow_call.rust.lint.yaml
rust-test:
name: 🧪
if: needs.rust-lint.result == 'success'
needs: rust-lint
uses: ./.github/workflows/workflow_call.rust.test.yaml
rust-coverage:
name: 🧪
if: needs.rust-lint.result == 'success'
needs: rust-lint
uses: ./.github/workflows/workflow_call.rust.coverage.yaml
secrets: inherit
rust-build-stable:

Check failure on line 48 in .github/workflows/pull_request.rust.yaml

View workflow run for this annotation

GitHub Actions / 🦀 Lint & Build kubevault

Invalid workflow file

The workflow is not valid. .github/workflows/pull_request.rust.yaml (Line: 48, Col: 3): Error calling workflow 'chezmoi-sh/kubevault/.github/workflows/workflow_call.rust.build.yaml@6a99da5a414a157453b0084f433e01c10e1c348e'. The nested job 'build' is requesting 'attestations: write, contents: write, id-token: write', but is only allowed 'attestations: none, contents: none, id-token: none'.
name: 🚧
if: needs.rust-lint.result == 'success'
needs: rust-lint
uses: ./.github/workflows/workflow_call.rust.build.yaml
with:
rust-channel: stable
rust-build-msrv:
name: 🚧
if: needs.rust-lint.result == 'success'
needs: rust-lint
uses: ./.github/workflows/workflow_call.rust.build.yaml
with:
rust-channel: 1.74.1