From 17b2f1efc1d21c4ddffbc2061fc52e5e51514478 Mon Sep 17 00:00:00 2001 From: Andreas Olsson Date: Sun, 12 May 2024 15:14:15 +0200 Subject: [PATCH] WIP: Fix PYVER envs --- .github/workflows/linter.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index adf3310..4c2f630 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -35,12 +35,12 @@ jobs: - name: Check ruff formating run: .venv/bin/ruff format --diff vault_oidc_ssh_cert_action.py env: - PYVER: steps.detect.outputs.pyver + PYVER: ${{ steps.detect.outputs.pyver }} - name: Check ruff linting run: .venv/bin/ruff check vault_oidc_ssh_cert_action.py env: - PYVER: steps.detect.outputs.pyver + PYVER: ${{ steps.detect.outputs.pyver }} - name: Check type hints run: .venv/bin/mypy --strict vault_oidc_ssh_cert_action.py