|
32 | 32 | steps: |
33 | 33 | - name: Check pull request |
34 | 34 | id: check-pr |
35 | | - uses: actions/github-script@v7 |
| 35 | + uses: actions/github-script@v8 |
36 | 36 | with: |
37 | 37 | retries: 3 |
38 | 38 | script: | |
@@ -87,28 +87,28 @@ jobs: |
87 | 87 | core.setOutput('PULL_SHA', pullSHA) |
88 | 88 |
|
89 | 89 | - name: Checkout code |
90 | | - uses: actions/checkout@v4 |
| 90 | + uses: actions/checkout@v6 |
91 | 91 | if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }} |
92 | 92 | with: |
93 | 93 | fetch-depth: 0 # Ref: https://github.com/actions/checkout/issues/100 |
94 | 94 |
|
95 | 95 | - name: Get current tag |
96 | 96 | id: current-tag |
97 | | - uses: "WyriHaximus/github-action-get-previous-tag@04e8485ecb6487243907e330d522ff60f02283ce" # v1.4.0 - latest as of 2025-04-27 |
| 97 | + uses: "WyriHaximus/github-action-get-previous-tag@61819f33034117e6c686e6a31dba995a85afc9de" # v2.0.0 - latest as of 2026-03-21 |
98 | 98 | if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }} |
99 | 99 | with: |
100 | 100 | fallback: v0.0.0 |
101 | 101 |
|
102 | 102 | - name: Determine next semver version |
103 | 103 | id: next-semver-version |
104 | | - uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2025-04-27 |
| 104 | + uses: madhead/semver-utils@36d1e0ed361bd7b4b77665de8093092eaeabe6ba # v4.3.0 - latest as of 2026-03-21 |
105 | 105 | if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }} |
106 | 106 | with: |
107 | 107 | version: ${{ steps.current-tag.outputs.tag }} |
108 | 108 |
|
109 | 109 | - name: Determine next tag |
110 | 110 | id: next-tag |
111 | | - uses: actions/github-script@v7 |
| 111 | + uses: actions/github-script@v8 |
112 | 112 | if: ${{ steps.check-pr.outputs.RELEASE_TYPE != '' }} |
113 | 113 | with: |
114 | 114 | script: | |
@@ -141,7 +141,7 @@ jobs: |
141 | 141 | steps: |
142 | 142 | - name: Create tag |
143 | 143 | id: create-tag |
144 | | - uses: actions/github-script@v7 |
| 144 | + uses: actions/github-script@v8 |
145 | 145 | with: |
146 | 146 | github-token: ${{ secrets.PAT_WORKFLOW }} |
147 | 147 | retries: 3 |
|
0 commit comments