nnichols / clojure-dependency-update-action

[MAINTENANCE ONLY]: A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
MIT License
40 stars 7 forks source link

Update process is failing #21

Open fdabrao opened 11 months ago

fdabrao commented 11 months ago

Bug Report

Describe the Bug

Two weeks ago it start to runing this error: image

User Information

name: Batch Dependency Update

on:
  workflow_dispatch:

  schedule:
    - cron: "50 1 * * 1" # Mondays at 1:50 AM

jobs:
  update-deps:
    name: Update dependencies

    runs-on: ubuntu-latest

    steps:
    - name: Checkout Latest Commit
      uses: actions/checkout@v2.3.4

    - name: Check deps
      uses:  nnichols/clojure-dependency-update-action@v5
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}
        batch: "true"
        branch: "development"
        skips: "github-action"