Skip to content

Commit

Permalink
Upgrade: Bump actions/cache from 3.0.2 to 3.0.4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.2 to 3.0.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.0.2...v3.0.4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and kevin-lee committed Jun 17, 2022
1 parent 5da83f2 commit bbd074d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
java-version: "adopt@1.11"

- name: Cache SBT
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.4
with:
path: |
~/.ivy2/cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,23 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Cache Coursier
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.4
with:
path: ~/.cache/coursier
key: ${{ runner.os }}-coursier-scala-${{ matrix.scala.binary-version }}-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('**/build.properties') }}
restore-keys: |
${{ runner.os }}-coursier-scala-${{ matrix.scala.binary-version }}-
- name: Cache Ivy
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.4
with:
path: ~/.ivy2/cache
key: ${{ runner.os }}-ivy-scala-${{ matrix.scala.binary-version }}-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('**/build.properties') }}
restore-keys: |
${{ runner.os }}-ivy-scala-${{ matrix.scala.binary-version }}-
- name: Cache npm
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
java-version: ${{ matrix.scala.java-version }}

- name: Cache SBT
uses: actions/cache@v3.0.2
uses: actions/cache@v3.0.4
with:
path: |
~/.ivy2/cache
Expand Down

0 comments on commit bbd074d

Please sign in to comment.