You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've set up a very simple dependency action for our repository, and I'm running into an issue where the action's container builds as expected, but it fails to even start running.
name: update dependencies
on:
schedule:
- cron: '0 0 1 * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
ref: development
token: ${{ secrets.ACCESS_TOKEN }}
- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@main
with:
token: ${{ secrets.ACCESS_TOKEN }}
update_version_with: 'release-tag'
skip_pull_request: 'false'
pull_request_branch: 'dependency-updates'
ignore: 'saadmk11/github-actions-version-updater@main'
The raw logs aren't particularly helpful for this error:
I've set up a very simple dependency action for our repository, and I'm running into an issue where the action's container builds as expected, but it fails to even start running.
The raw logs aren't particularly helpful for this error:
I'm not sure what's going on, but it seems like the action can't find the correct module to actually run.
The text was updated successfully, but these errors were encountered: