-
Notifications
You must be signed in to change notification settings - Fork 191
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Since the version 1.6.27
, the actionlint
failed on the following correct workflow configuration:
name: test
on:
push
jobs:
job_id:
runs-on: ubuntu-latest
steps:
- id: 'secrets'
uses: 'google-github-actions/get-secretmanager-secrets@v2'
with:
secrets: |-
token:my-project/docker-registry-token
# other step
- id: 'publish'
uses: 'foo/bar@v1'
env:
TOKEN: '${{ steps.secrets.outputs.token }}'
📓 This workflow configuration is an example based on https://github.com/google-github-actions/get-secretmanager-secrets?tab=readme-ov-file#outputs
➜ actionlint test.yml
test.yml:21:21: property "token" is not defined in object type {} [expression]
|
21 | TOKEN: '${{ steps.secrets.outputs.token }}'
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
➜ actionlint --version
1.6.27
installed by building from source
built with go1.22.0 compiler for darwin/arm64
I confirmed that 1.6.26
works without error as expected.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working