Skip to content

Commit 3aceff5

Browse files
authored
[skip changelog] Use major version ref for actions/github-script action (#1404)
Use of the major version ref will cause the workflow to benefit from ongoing development to its `actions/github-script` GitHub Actions action dependency at each patch or minor release up until such time as a new major release is made. Dependabot will submit a PR at that time, which will serve as the notification that a newer version is available. At that time, the maintainer should evaluate whether any changes to the workflow are required by the breaking change that triggered the major release before manually updating the major ref (i.e., `uses: actions/github-script@v5`).
1 parent 1985936 commit 3aceff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/github-stats.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Fetch downloads count
1717
id: fetch
18-
uses: actions/github-script@v4.0.2
18+
uses: actions/github-script@v4
1919
with:
2020
github-token: ${{github.token}}
2121
script: |

0 commit comments

Comments
 (0)