From 0fb3fb358622e79b7cdd2c6707bc21104ab805ba Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Thu, 15 Feb 2024 17:51:22 -0500 Subject: [PATCH] use HEAD branch --- .github/workflows/example-performance.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/example-performance.yml b/.github/workflows/example-performance.yml index 884cc1a..f2fa51b 100644 --- a/.github/workflows/example-performance.yml +++ b/.github/workflows/example-performance.yml @@ -7,14 +7,11 @@ jobs: steps: - uses: actions/checkout@v4 # look at fast this action installs a single dependency - - uses: bahmutov/npm-install@performance + - uses: bahmutov/npm-install@HEAD with: working-directory: examples/basic install-command: 'npm install chalk' cache-key-prefix: chalk8 - env: - ACTIONS_RUNNER_DEBUG: true - ACTIONS_STEP_DEBUG: true # cache using https://github.com/actions/cache cache2: @@ -22,12 +19,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Caching - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: chalk-v2 - env: - ACTIONS_RUNNER_DEBUG: true - ACTIONS_STEP_DEBUG: true - name: Install just chalk run: npm install chalk