Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Build Pipeline
on:
push:
branches:
- main
paths-ignore:
- "README.md"
pull_request:
branches:
- main
paths-ignore:
- "README.md"
concurrency:
group: "${{ github.workflow }} @ ${{ github.head_ref || github.ref }}"
cancel-in-progress: true
env:
RUST_VERSION: 1.81.0
CARGO_TERM_COLOR: always
jobs:
format-and-clippy:

Check failure on line 24 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / Build Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 24, Col: 3): Error calling workflow 'nikoshet/pvc-snapshotter/.github/workflows/format-workflow.yaml@fa1e55495dc538412dd49d8353091e19ba9efede'. The nested job 'format-and-clippy' is requesting 'id-token: write', but is only allowed 'id-token: none'.
uses: ./.github/workflows/format-workflow.yaml
secrets: inherit
build:
runs-on: ubuntu-latest
needs: [format-and-clippy]
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
toolchain: ${{ env.RUST_VERSION }}
- name: Build
run: cargo build --verbose