fix(deps): update redis docker tag to v7.2.1 #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Update snapshots | |
on: | |
push: | |
branches: | |
- 'renovate/**' | |
paths: | |
# If renovatebot is updating Redis it'll touch these files | |
- '.github/workflows/*.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
run: | |
name: Are snapshots up to date? 🤔 | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis:7.2.1 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci --ignore-scripts | |
- run: npm run test:e2e -- --forceExit -u | |
- run: node scripts/update-data | |
- run: npx jest --forceExit -u | |
- run: node scripts/update-compat && npx prettier --write compat.md | |
- uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 # v9 | |
with: | |
default_author: github_actions | |
commit: --no-verify | |
message: 'chore(snapshots): 🤖 ✨' |