Skip to content

Commit

Permalink
README: recommend that users set up Dependabot version updates for Gi…
Browse files Browse the repository at this point in the history
…tHub Actions (#50)
  • Loading branch information
DilumAluthge authored Apr 5, 2024
1 parent ca36063 commit 9848908
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,27 @@ When the `install-juliaup` action runs, it adds `juliaup` to the PATH. Therefore
- run: juliaup status
```

## Using Dependabot version updates to keep your GitHub Actions up to date

We highly recommend that you set up Dependabot version updates on your repo to keep your GitHub Actions up to date.

To set up Dependabot version updates, create a file named `.github/dependabot.yml` in your repo with the following contents:

```yaml
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 99
labels:
- "dependencies"
- "github-actions"
```

For more details on Dependabot version updates, see the [GitHub Dependabot documentation](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates).

## Private internals

The `internal-juliaup-version` input is a private internal and is not part of the public API of this action. Therefore, in a future non-breaking (minor or patch) release of this action, we are allowed to:
Expand Down

0 comments on commit 9848908

Please sign in to comment.