Skip to content

Commit ba648ce

Browse files
authored
chore: remove tag of unmanaged dependency check (#2626)
After b/328660418 is resolved, we don't need the `unmanaged-dependencies-check-latest` tag.
1 parent e41bd8f commit ba648ce

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/create_additional_release_tag.yaml

+1-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions: write-all
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
- name: Set up Git
@@ -34,14 +34,3 @@ jobs:
3434
git tag $TAG_NAME
3535
git push origin $TAG_NAME
3636
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

Comments
 (0)