diff --git a/.github/workflows/precommitVersionBumps.yml b/.github/workflows/precommitVersionBumps.yml index d1379a6..b88f72e 100644 --- a/.github/workflows/precommitVersionBumps.yml +++ b/.github/workflows/precommitVersionBumps.yml @@ -33,7 +33,7 @@ jobs: git pull origin next - name: Cache NPM dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -41,7 +41,7 @@ jobs: ${{ runner.os }}-node - name: Cache Python dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/local.txt') }} diff --git a/.github/workflows/semanticVersionBump.yml b/.github/workflows/semanticVersionBump.yml index f105887..a860c3c 100644 --- a/.github/workflows/semanticVersionBump.yml +++ b/.github/workflows/semanticVersionBump.yml @@ -32,7 +32,7 @@ jobs: persist-credentials: false - name: Cache NPM dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}