Skip to content

Commit 5123ad0

Browse files
Bump the github-actions group across 2 directories with 6 updates (DefinitelyTyped#74255)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 55a9d75 commit 5123ad0

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/actions/setup-for-scripts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Set up repo for running scripts
44
runs:
55
using: composite
66
steps:
7-
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
7+
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
88
with:
99
node-version: '20'
1010
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
8888
8989
- name: Restore pnpm cache
90-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
90+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9191
with:
9292
path: ${{ steps.pnpm-cache.outputs.store }}
9393
key: ${{ runner.os }}-pnpm-store-cache-
@@ -115,7 +115,7 @@ jobs:
115115
if: ${{ github.event_name == 'pull_request' }}
116116

117117
- name: Upload suggestions
118-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
118+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
119119
with:
120120
name: suggestions_${{ matrix.shardId }}_${{ matrix.shardCount }}
121121
if-no-files-found: ignore
@@ -139,7 +139,7 @@ jobs:
139139
id: suggestions-dir
140140
run: echo "path=$(node ./scripts/get-suggestions-dir.js)" >> "$GITHUB_OUTPUT"
141141

142-
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
142+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
143143
with:
144144
path: ${{ steps.suggestions-dir.outputs.path }}
145145
merge-multiple: true

.github/workflows/UpdateCodeowners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- run: pnpm run update-codeowners
3434

35-
- uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v7.0.0
35+
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
3636
with:
3737
commit_author: 'TypeScript Bot <typescriptbot@microsoft.com>'
3838
commit_message: '🤖 Update CODEOWNERS'

.github/workflows/format-and-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: date
2525
run: echo "date=$(/bin/date -u "+%Y-%m-%d")" >> $GITHUB_OUTPUT
2626

27-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
27+
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
2828
with:
2929
# dprint caches info about the files in the repo to skip formatting them.
3030
# However, since package.json and .dprint.jsonc don't change very often,
@@ -40,7 +40,7 @@ jobs:
4040
4141
- run: pnpm dprint fmt
4242

43-
- uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v7.0.0
43+
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
4444
with:
4545
commit_author: 'TypeScript Bot <typescriptbot@microsoft.com>'
4646
commit_message: '🤖 dprint fmt'

.github/workflows/ghostbuster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
fi
4343
4444
- if: ${{ inputs.skipPR != 'true' }}
45-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
45+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
4646
with:
4747
token: ${{ secrets.GITHUB_TOKEN }}
4848
commit-message: 'Remove contributors with deleted accounts #no-publishing-comment'

.github/workflows/pnpm-cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: pnpm install
2828

2929
- name: Save pnpm cache
30-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
30+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3131
with:
3232
path: ${{ steps.pnpm-cache.outputs.store }}
3333
key: ${{ runner.os }}-pnpm-store-cache-${{ steps.pnpm-cache.outputs.date }}

.github/workflows/support-window.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Make SVG diagram
4444
run: node --experimental-json-modules scripts/support-window > docs/support-window.svg
4545

46-
- uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v7.0.0
46+
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0
4747
with:
4848
commit_author: 'TypeScript Bot <typescriptbot@microsoft.com>'
4949
commit_message: '🤖 Update support window'

0 commit comments

Comments
 (0)