Skip to content
This repository has been archived by the owner on Mar 29, 2023. It is now read-only.

Bump actions/cache from 2.1.5 to 3.2.6 #807

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('data-collector/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('data-collector/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: data-collector/target
key: ${{ runner.os }}-cargo-build-target-musl-${{ hashFiles('data-collector/Cargo.lock') }}
Expand Down Expand Up @@ -53,17 +53,17 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('data-forwarder/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('data-forwarder/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: data-forwarder/target
key: ${{ runner.os }}-cargo-build-target-musl-${{ hashFiles('data-forwarder/Cargo.lock') }}
Expand Down Expand Up @@ -143,17 +143,17 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('report-parser/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('report-parser/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: report-parser/target
key: ${{ runner.os }}-cargo-build-target-musl-${{ hashFiles('report-parser/Cargo.lock') }}
Expand Down Expand Up @@ -181,17 +181,17 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('slack-connector/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: ~/.cache/docker/cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('slack-connector/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: slack-connector/target
key: ${{ runner.os }}-cargo-build-target-musl-${{ hashFiles('slack-connector/Cargo.lock') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand All @@ -38,7 +38,7 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand All @@ -64,7 +64,7 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand All @@ -119,7 +119,7 @@ jobs:
with:
version: 0.22.2
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand All @@ -142,7 +142,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Cache cargo registry, index and build
uses: actions/cache@v2.1.5
uses: actions/cache@v3.2.6
with:
path: |
~/.cargo/registry
Expand Down