Commit 611c043 1 parent 461c8c1 commit 611c043 Copy full SHA for 611c043
File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
if : github.event_name != 'push' || github.repository == 'DIRACGrid/WebAppDIRAC'
9
9
steps :
10
- - uses : actions/checkout@v2
11
- - uses : actions/setup-python@v2
10
+ - uses : actions/checkout@v3
11
+ - uses : actions/setup-python@v4
12
12
with :
13
13
python-version : " 3.9"
14
14
- name : Install pre-commit
25
25
shell : bash -l {0}
26
26
27
27
steps :
28
- - uses : actions/checkout@v2
29
- - uses : actions/checkout@v2
28
+ - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v3
30
30
with :
31
31
repository : DIRACGrid/DIRAC
32
32
path : .DIRAC
Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ jobs:
21
21
run :
22
22
shell : bash -l {0}
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
with :
26
26
token : ${{ secrets.PAT || github.token }}
27
27
- run : |
28
28
git fetch --prune --unshallow
29
29
git config --global user.email "[email protected] "
30
30
git config --global user.name "DIRACGrid CI"
31
31
git clone https://github.com/DIRACGrid/DIRAC.git ../DIRAC
32
- - uses : actions/setup-python@v2
32
+ - uses : actions/setup-python@v4
33
33
with :
34
34
python-version : " 3.9"
35
35
- name : Installing dependencies
88
88
git show
89
89
# Create the tag
90
90
git tag "$NEW_VERSION"
91
- echo ::set-output name= create-release:: true
92
- echo ::set-output name= new-version::" $NEW_VERSION"
91
+ run: echo " create-release= true" >> $GITHUB_OUTPUT
92
+ run: echo " new-version= $NEW_VERSION" >> $GITHUB_OUTPUT
93
93
fi
94
94
fi
95
95
fi
Original file line number Diff line number Diff line change 6
6
triage :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/labeler@v3
9
+ - uses : actions/labeler@v4
10
10
with :
11
11
repo-token : " ${{ secrets.PAT }}"
Original file line number Diff line number Diff line change 9
9
concurrency : pr-sweep
10
10
if : github.repository == 'DIRACGrid/WebAppDIRAC'
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
13
with :
14
14
fetch-depth : 0
15
15
token : ${{ secrets.PAT }}
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Check Commit Format
16
- uses : gsactions/commit-message-checker@v1
16
+ uses : gsactions/commit-message-checker@v2
17
17
with :
18
18
pattern : ' ^((docs|feat|fix|refactor|style|test|sweep)( ?\(.*\))?: .+|Revert ".+")$'
19
19
excludeDescription : " true" # optional: this excludes the description body of a pull request
23
23
flags : " gim"
24
24
error : ' Your commit has to follow the format "<type>(<scope>): <subject>"".'
25
25
- name : Check Commit Length
26
- uses : gsactions/commit-message-checker@v1
26
+ uses : gsactions/commit-message-checker@v2
27
27
with :
28
28
pattern : " ^.{20,150}$"
29
29
error : " Commit messages should be between 20 and 150 chars"
You can’t perform that action at this time.
0 commit comments