Skip to content

Commit

Permalink
fix(backstop): update caching action to use quoted property for jq
Browse files Browse the repository at this point in the history
…version query
  • Loading branch information
dgrebb committed Apr 8, 2024
1 parent d492790 commit a7f1997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/install-cache-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
shell: bash
working-directory: ${{ inputs.WORKSPACE_ROOT }}
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(cat package.json | jq -r '.dependencies.["@playwright/test"]' || 'latest')" >> $GITHUB_ENV
run: echo "PLAYWRIGHT_VERSION=$(cat package.json | jq -r '.dependencies."@playwright/test"' || 'latest')" >> $GITHUB_ENV

- uses: actions/cache@v4
if: ${{ inputs.BROWSER_BINARIES }}
Expand Down

0 comments on commit a7f1997

Please sign in to comment.