Skip to content

Commit b97d42e

Browse files
authored
Merge pull request #1231 from BranchMetrics/dependabot/github_actions/actions/github-script-6
Bump actions/github-script from 4 to 6 The test failure is due to a timeout that's been fixed in master
2 parents 28a4c28 + 94ab041 commit b97d42e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
echo "Current version is $(cat fastlane/.version)."
152152
echo "version=$(cat fastlane/.version)" >> $GITHUB_OUTPUT
153153
- name: Create GitHub Release
154-
uses: actions/github-script@v4
154+
uses: actions/github-script@v6
155155
with:
156156
script: |
157157
const createRelease = require('./.github/custom-scripts/create-release');
@@ -165,7 +165,7 @@ jobs:
165165
version: tagName,
166166
});
167167
- name: Upload Release Assets
168-
uses: actions/github-script@v4
168+
uses: actions/github-script@v6
169169
with:
170170
script: |
171171
const uploadAsset = require('./.github/custom-scripts/upload-asset');
@@ -236,14 +236,14 @@ jobs:
236236
path: 'static-framework-noidfa/checksum_static_noidfa',
237237
});
238238
- name: Report Release
239-
uses: actions/github-script@v4
239+
uses: actions/github-script@v6
240240
with:
241241
script: |
242242
console.log('Created release ${{ steps.get-version.outputs.version }}:');
243243
console.log(` https://github.com/${context.repo.owner}/${context.repo.repo}/releases/${{ steps.get-version.outputs.version }}`);
244244
# 4. Trigger import workflow in ios-spm repo.
245245
- name: Export to ios-spm repository
246-
uses: actions/github-script@v4
246+
uses: actions/github-script@v6
247247
with:
248248
script: |
249249
console.log('TODO: This 👆');

0 commit comments

Comments
 (0)