Skip to content

Commit

Permalink
*: update to actions/cache@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Feb 9, 2024
1 parent c1fa928 commit f525f68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scala/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ runs:
- name: Cache Prometheus Agent
if: inputs.prometheus-url
id: prometheus-agent-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: prometheus-agent-${{ steps.find-prometheus-agent.outputs.prometheus_agent }}
restore-keys: prometheus-agent
Expand All @@ -170,14 +170,14 @@ runs:
curl -u "$MAVEN_USERNAME:$MAVEN_PASSWORD" -O "$PROMETHEUS_URL"
- name: Cache SBT Project
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: sbt-project-${{ inputs.working-directory }}-${{ github.sha }}
restore-keys: sbt-project-${{ inputs.working-directory }}
path: ${{ inputs.working-directory }}/project/target

- name: Cache SBT Jobs
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: sbt-jobs-${{ inputs.working-directory }}-${{ github.sha }}
restore-keys: sbt-jobs-${{ inputs.working-directory }}
Expand Down
2 changes: 1 addition & 1 deletion yarn/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ runs:
echo "CACHE_DIR_YARN=$dir" | tee -a "$GITHUB_ENV"
- name: Use Yarn Cache
uses: actions/cache@v3
uses: actions/cache@v4
id: yarn-cache
with:
path: ${{ env.CACHE_DIR_YARN }}
Expand Down

0 comments on commit f525f68

Please sign in to comment.