Pin dependencies

PR created by Renovate Bot.
This commit is contained in:
Renovate 2024-01-07 15:46:14 +00:00
parent 121337a373
commit fb788f5a4b
2 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ jobs:
password: ${{ secrets.DOCKER_TOKEN }}
- name: Restore from cache
uses: actions/cache/restore@v3 # v3
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
id: restore-cache
with:
path: /tmp/.buildx-cache
@ -45,7 +45,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache
- name: Save to cache
uses: actions/cache/save@v3 # v3
uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
id: cache
with:
path: /tmp/.buildx-cache

View File

@ -7,22 +7,22 @@ jobs:
build:
runs-on: ubuntu-22.04-node
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- name: Cache cargo registry
uses: actions/cache@v2
uses: actions/cache@8492260343ad570701412c2f464a5877dc76bace # v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2
uses: actions/cache@8492260343ad570701412c2f464a5877dc76bace # v2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2
uses: actions/cache@8492260343ad570701412c2f464a5877dc76bace # v2
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}