Skip to content

Commit 8f84e17

Browse files
authored
fix scip-typescript github action (#228)
1 parent 1baf3ff commit 8f84e17

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/scip-typescript.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ on:
66
- '**.tsx'
77
- '**.js'
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
scip-typescript:
1115
if: github.repository == 'sourcegraph/openctx'
1216
runs-on: ubuntu-latest
1317
steps:
14-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
18+
- uses: actions/checkout@v3
1519
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # SECURITY: pin third-party action hashes
1620
id: pnpm-install
1721
with:
@@ -21,7 +25,7 @@ jobs:
2125
shell: bash
2226
run: |
2327
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
24-
- uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c
28+
- uses: actions/cache@v3
2529
name: Setup pnpm cache
2630
with:
2731
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}

0 commit comments

Comments
 (0)