Skip to content

Excavator

Excavator #1696

Workflow file for this run

on:
workflow_dispatch:
schedule:
# run every 4 hours
- cron: '20 */4 * * *'
name: Excavator
jobs:
excavate:
name: Excavate
runs-on: windows-latest
env:
DENO_DIR: C:\deno_cache
steps:
- uses: actions/checkout@main
- name: Cache Deno dependencies
uses: actions/cache@v4
with:
path: ${{ env.DENO_DIR }}
key: deno-dir-${{ hashFiles('scripts/deno/deno.lock') }}
restore-keys: |
${{ hashFiles('scripts/deno/deno.lock') }}
deno-dir-
deno-
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Excavate
uses: ScoopInstaller/GithubActions@main
env:
DENO_DIR: ${{ env.DENO_DIR }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SKIP_UPDATED: 1