From fd7d7069e950e7658b8f63d9baa483a617e37390 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 4 Jul 2024 14:46:37 -0500 Subject: [PATCH] ci: upgrade github action versions - july 2024 (#158) --- .github/workflows/pr.yaml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index a1c9d90..88e0294 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: true env: - TILT_VERSION: '0.33.12' + TILT_VERSION: '0.33.17' jobs: tests: @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 - name: Setup Tilt - uses: yokawasa/action-setup-kube-tools@v0.11.0 + uses: yokawasa/action-setup-kube-tools@v0.11.1 with: setup-tools: | tilt @@ -31,19 +31,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '20' - - - name: Cache node modules - uses: actions/cache@v4 - env: - cache-name: cache-node-modules - with: - # npm cache files are stored in `~/.npm` on Linux/macOS - path: ~/.npm - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-build-${{ env.cache-name }}- - ${{ runner.os }}-build- - ${{ runner.os }}- + cache: npm - name: Run npm install run: npm ci