Skip to content

Commit

Permalink
ci(cache-cleanup): fix bad formatting for env. variable (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusrbrown committed Sep 20, 2024
1 parent 8708b9a commit 955416a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/actions/prepare/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ description: Prepare the job by installing required tools and dependencies
runs:
using: 'composite'
steps:
- id: setup-node
name: Setup Node.js
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
with:
node-version-file: '.node-version'
run_install: false

- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
- name: Setup Node.js
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
run_install: false
node-version-file: '.node-version'

- name: Install dependencies and build packages
uses: ./.github/actions/pnpm-install
2 changes: 1 addition & 1 deletion .github/workflows/cache-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
|| github.event_name != 'pull_request' && github.ref
|| ''
}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh extension install actions/gh-actions-cache
Expand Down

0 comments on commit 955416a

Please sign in to comment.