We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e41bd8f commit ba648ceCopy full SHA for ba648ce
.github/workflows/create_additional_release_tag.yaml
@@ -11,7 +11,7 @@ jobs:
11
permissions: write-all
12
steps:
13
- name: Checkout code
14
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
15
with:
16
token: ${{ secrets.GITHUB_TOKEN }}
17
- name: Set up Git
@@ -34,14 +34,3 @@ jobs:
34
git tag $TAG_NAME
35
git push origin $TAG_NAME
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
-
0 commit comments