diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 65b9b7b45..53a01be00 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -38,7 +38,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/Library/Caches/electron diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 40ff3bef5..760b9df01 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cache/electron diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc9bff67f..e92c15a8f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache Node modules - uses: actions/cache@v5 + uses: actions/cache@v6 with: # npm cache files are stored in ~/.npm path: ~/.npm @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-node- - name: Cache Electron binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ${{ env.LOCALAPPDATA }}\electron\Cache