We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f792dc commit 2b6a562Copy full SHA for 2b6a562
1 file changed
.github/workflows/headver-tagging.yml
@@ -12,6 +12,7 @@ on:
12
jobs:
13
generate_tag:
14
runs-on: ubuntu-latest
15
+ permissions: write-all
16
outputs:
17
version: ${{ steps.compute_version.outputs.version }}
18
steps:
@@ -52,8 +53,8 @@ jobs:
52
53
echo "version=$VERSION" >> $GITHUB_ENV
54
echo "::set-output name=version::$VERSION"
55
- - name: Push Git Tag
56
- uses: actions/github-script@v5
+ - name: Create Tag
57
+ uses: actions/github-script@v6
58
with:
59
script: |
60
github.rest.git.createRef({
0 commit comments