We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3258003 commit 4b47a0fCopy full SHA for 4b47a0f
1 file changed
.github/workflows/update-license-year.yml
@@ -12,15 +12,15 @@ jobs:
12
contents: write
13
14
steps:
15
- - name: Checkout repository
16
- uses: actions/checkout@v4
+ - name: Checkout your repository using git
+ uses: actions/checkout@v6
17
18
- - name: Update Year in LICENSE
+ - name: Update year in LICENSE
19
run: |
20
CURRENT_YEAR=$(date +'%Y')
21
sed -i -E "s/Copyright \(c\) [0-9]{4}/Copyright (c) $CURRENT_YEAR/g" LICENSE
22
23
- - name: Commit and Push changes
+ - name: Commit and push changes
24
25
git config --global user.name "github-actions[bot]"
26
git config --global user.email "github-actions[bot]@users.noreply.github.com"
0 commit comments