|
|
@ -10,7 +10,7 @@
|
|
|
|
- [Node - Yarn](#node---yarn)
|
|
|
|
- [Node - Yarn](#node---yarn)
|
|
|
|
- [PHP - Composer](#php---composer)
|
|
|
|
- [PHP - Composer](#php---composer)
|
|
|
|
- [Python - pip](#python---pip)
|
|
|
|
- [Python - pip](#python---pip)
|
|
|
|
- [Ruby - Gem](#ruby---gem)
|
|
|
|
- [Ruby - Bundler](#ruby---bundler)
|
|
|
|
- [Rust - Cargo](#rust---cargo)
|
|
|
|
- [Rust - Cargo](#rust---cargo)
|
|
|
|
- [Scala - SBT](#scala---sbt)
|
|
|
|
- [Scala - SBT](#scala---sbt)
|
|
|
|
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
|
|
|
|
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
|
|
|
@ -248,15 +248,15 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Ruby - Gem
|
|
|
|
## Ruby - Bundler
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
```yaml
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
path: vendor/bundle
|
|
|
|
path: vendor/bundle
|
|
|
|
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
|
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gem-
|
|
|
|
${{ runner.os }}-gems-
|
|
|
|
```
|
|
|
|
```
|
|
|
|
When dependencies are installed later in the workflow, we must specify the same path for the bundler.
|
|
|
|
When dependencies are installed later in the workflow, we must specify the same path for the bundler.
|
|
|
|
|
|
|
|
|
|
|
|