Pin dependencies #22

Merged
Renovate merged 1 commits from renovate/pin-dependencies into master 2024-01-07 10:46:17 -05:00
2 changed files with 6 additions and 6 deletions
Showing only changes of commit fb788f5a4b - Show all commits

View File

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

View File

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