From c450dcfd924b8eb29dddce2aa684c17fc13c59e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 06:30:43 +0000 Subject: [PATCH] Bump actions/cache in /.github/composite/download-openjtalk-dict Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/composite/download-openjtalk-dict/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/composite/download-openjtalk-dict/action.yml b/.github/composite/download-openjtalk-dict/action.yml index a0a9bd9..ababb7a 100644 --- a/.github/composite/download-openjtalk-dict/action.yml +++ b/.github/composite/download-openjtalk-dict/action.yml @@ -11,7 +11,7 @@ inputs: runs: using: composite steps: - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: restore-open-jtalk-dictionary with: path: ${{ inputs.cache-path }} @@ -20,7 +20,7 @@ runs: shell: bash run: curl -sSLfo open_jtalk_dic_utf_8-1.11.tar.gz https://jaist.dl.sourceforge.net/project/open-jtalk/Dictionary/open_jtalk_dic-1.11/open_jtalk_dic_utf_8-1.11.tar.gz - if: ${{ steps.restore-open-jtalk-dictionary.outputs.cache-hit != 'true' }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }}