Skip to content

Commit

Permalink
Merge pull request #112 from The-Strategy-Unit/add_renew_cache_action
Browse files Browse the repository at this point in the history
adds an action to touch the cache, renewing the invalidation time
  • Loading branch information
tomjemmett authored Mar 13, 2024
2 parents 0052bf6 + 403e179 commit ec79849
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/renew_cache.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: renew-cache
on:
schedule:
- cron: "0 10 * * *"

jobs:
renew-cache:
name: renew-cache
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3

- uses: actions/cache@v4
with:
key: freeze
path: _freeze

0 comments on commit ec79849

Please sign in to comment.