diff options
author | sudlud <sudlud@users.noreply.github.com> | 2024-06-01 21:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-01 21:43:06 +0200 |
commit | 6f1d3aab153d8f9c86e3d5b6f5d535c45cf4b822 (patch) | |
tree | 9cc211ce0747fa40bc3c4a94c6ee31c4b7d016c3 | |
parent | 8e9e134924efc5da5f50d3dd197f613cabadaa33 (diff) |
fix(CI): bump pr-labeler dependencies for usage of Node.js 20 (#18983)
this workflow currently has the warning:
```
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/labeler@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```
-rw-r--r-- | .github/workflows/pr_labeler.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pr_labeler.yml b/.github/workflows/pr_labeler.yml index 4e231bb0be..28ee6bd3df 100644 --- a/.github/workflows/pr_labeler.yml +++ b/.github/workflows/pr_labeler.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: true - - uses: actions/labeler@v4 + - uses: actions/labeler@v5 with: repo-token: ${{ secrets.GITHUB_TOKEN }} configuration-path: .github/labeler.yml |