From cfe14d9eb3ddebeb4b9db61765cfe9190eae08f6 Mon Sep 17 00:00:00 2001 From: Nathaniel Caza Date: Mon, 3 Mar 2025 09:53:36 -0600 Subject: [PATCH] build: update GitHub Actions workflow to use actions/cache for dependency caching --- .github/workflows/dep-autoapprove.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dep-autoapprove.yml b/.github/workflows/dep-autoapprove.yml index 85ac5afd5e..a512bd2496 100644 --- a/.github/workflows/dep-autoapprove.yml +++ b/.github/workflows/dep-autoapprove.yml @@ -17,10 +17,10 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v4 + - uses: actions/cache@v4 with: - node-version: '22' - cache: 'yarn' + key: key + path: ~/.bun/install/cache - name: Run make generate run: make generate - uses: stefanzweifel/git-auto-commit-action@v5