File tree Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Expand file tree Collapse file tree 1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 11
11
permissions : write-all
12
12
steps :
13
13
- name : Checkout code
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
token : ${{ secrets.GITHUB_TOKEN }}
17
17
- name : Set up Git
34
34
git tag $TAG_NAME
35
35
git push origin $TAG_NAME
36
36
done
37
- # Generate a tag for unmanaged dependencies check.
38
- # Use fixed tag so that checks in handwritten libraries do not need to
39
- # update the version.
40
- CHECK_LATEST_TAG="unmanaged-dependencies-check-latest"
41
- # delete and create the tag locally.
42
- git tag --delete ${CHECK_LATEST_TAG}
43
- git tag ${CHECK_LATEST_TAG}
44
- # delete the tag in remote repo and push again.
45
- git push --delete origin ${CHECK_LATEST_TAG}
46
- git push origin ${CHECK_LATEST_TAG}
47
-
You can’t perform that action at this time.
0 commit comments