Skip to content

Commit

Permalink
Update actions/cache to a newer version (v3)
Browse files Browse the repository at this point in the history
As per
https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/,
GitHub has started a deprecation process for the GitHub Actions that run on
Node12. One of such actions was a `v2` of the `actions/cache` action. We're
updating the action to a newer `v3` version which runs on Node16.
  • Loading branch information
michalinacienciala committed Jan 9, 2024
1 parent 44d9fc8 commit d4a87df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- uses: docker/setup-buildx-action@v2

- name: Cache Docker layers
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down

0 comments on commit d4a87df

Please sign in to comment.