Skip to content

Commit f4cf497

Browse files
authored
Merge pull request #91 from yoshi389111/release-0.7.2
Release 0.7.2
2 parents cd51794 + df80ecd commit f4cf497

File tree

12 files changed

+182509
-335207
lines changed

12 files changed

+182509
-335207
lines changed

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module.exports = {
22
root: true,
33
env: {
4-
es6: true,
4+
es2021: true,
55
node: true,
66
},
77
parser: '@typescript-eslint/parser',
88
parserOptions: {
99
sourceType: 'module',
10-
ecmaVersion: 2019,
10+
ecmaVersion: 2022,
1111
tsconfigRootDir: __dirname,
1212
project: ['./tsconfig.eslint.json']
1313
},

CHANGE_LOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2025-03-05, 0.7.2 release
4+
5+
* Changed node version from 16 to 20.
6+
* Changed actions/checkout version from v3 to v4.
7+
* Update dependent libraries(see package.json).
8+
39
## 2023-01-11, 0.7.1 release
410

511
* Changed node version from 12 to 16.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
runs-on: ubuntu-latest
4545
name: generate-github-profile-3d-contrib
4646
steps:
47-
- uses: actions/checkout@v3
48-
- uses: yoshi389111/github-profile-3d-contrib@0.7.1
47+
- uses: actions/checkout@v4
48+
- uses: yoshi389111/github-profile-3d-contrib@0.7.2
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
USERNAME: ${{ github.repository_owner }}
@@ -54,8 +54,9 @@ jobs:
5454
git config user.name github-actions
5555
git config user.email github-actions@github.com
5656
git add -A .
57-
git commit -m "generated"
58-
git push
57+
if git commit -m "generated"; then
58+
git push
59+
fi
5960
```
6061

6162
Note: If you also want to include the private repository, register the "personal access token" in the repository and set it to GITHUB_TOKEN specified in the workflow file.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Generate profile 3D Contributions
33
author: yoshi389111
44

55
runs:
6-
using: 'node16'
6+
using: 'node20'
77
main: 'dist/index.js'
88

99
branding:

0 commit comments

Comments
 (0)