saadmk11 / github-actions-version-updater

A GitHub Action that Updates All GitHub Actions in a Repository and Creates a Pull Request with the Updates
https://github.com/marketplace/actions/github-actions-version-updater
MIT License
89 stars 15 forks source link

Not updating to new versions #94

Open baconcheese113 opened 9 months ago

baconcheese113 commented 9 months ago

Please see this PR

It lists 2 actions that have new versions but does not include the version bump in the PR code changes

The 2 actions are

google-github-actions/auth@v0
google-github-actions/deploy-cloudrun@v0

And they should have been set to

google-github-actions/auth@1.1.1
google-github-actions/deploy-cloudrun@v1.0.2
kenz commented 4 weeks ago

@baconcheese113 You need to remove the quotes from the Uses. Before:

uses: "google-github-actions/auth@v1.1.1"

After:

uses: google-github-actions/auth@v1.1.1