Skip to content

Commit 236e35c

Browse files
build(deps): bump the github-actions group across 1 directory with 3 updates (DefinitelyTyped#73452)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8044905 commit 236e35c

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix: ${{ steps.matrix.outputs.matrix }}
3131

3232
steps:
33-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3434
with:
3535
# Need this to be able to inquire about origin/master
3636
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
@@ -62,7 +62,7 @@ jobs:
6262
fail-fast: false
6363

6464
steps:
65-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
65+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
6666
with:
6767
# Need this to be able to inquire about origin/master
6868
filter: blob:none # https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
@@ -87,7 +87,7 @@ jobs:
8787
echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
8888
8989
- name: Restore pnpm cache
90-
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
90+
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
9191
with:
9292
path: ${{ steps.pnpm-cache.outputs.store }}
9393
key: ${{ runner.os }}-pnpm-store-cache-
@@ -132,14 +132,14 @@ jobs:
132132
- test
133133

134134
steps:
135-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
135+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
136136
- uses: ./.github/actions/setup-for-scripts
137137

138138
- name: Get suggestions dir
139139
id: suggestions-dir
140140
run: echo "path=$(node ./scripts/get-suggestions-dir.js)" >> "$GITHUB_OUTPUT"
141141

142-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
142+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
143143
with:
144144
path: ${{ steps.suggestions-dir.outputs.path }}
145145
merge-multiple: true
@@ -162,7 +162,7 @@ jobs:
162162
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
163163

164164
steps:
165-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
165+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
166166
- uses: ./.github/actions/setup-for-scripts
167167

168168
- run: pnpm tsc -p ./scripts

.github/workflows/UpdateCodeowners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
2222

2323
steps:
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2525
with:
2626
fetch-depth: 0
2727

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
1818
with:
1919
# Use a deploy key so that CI triggers on pushes; we want to know if formatting broke something.
2020
ssh-key: ${{ secrets.DEPLOY_KEY }}
@@ -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@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
27+
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
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,

.github/workflows/ghostbuster.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
2424

2525
steps:
26-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2727
- uses: ./.github/actions/setup-for-scripts
2828
- run: node ./scripts/ghostbuster.js > ${{ runner.temp }}/comment.md
2929
env:

.github/workflows/lint-md.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
1313
steps:
14-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
1515
- uses: ./.github/actions/setup-for-scripts
1616
- run: pnpm remark --frail . .github

.github/workflows/pnpm-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: ${{ github.repository == 'DefinitelyTyped/DefinitelyTyped' }}
1313
steps:
14-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
1515
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1616
with:
1717
node-version: '20'
@@ -27,7 +27,7 @@ jobs:
2727
run: pnpm install
2828

2929
- name: Save pnpm cache
30-
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
30+
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
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
@@ -23,7 +23,7 @@ jobs:
2323
if: github.repository == 'DefinitelyTyped/DefinitelyTyped'
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2727
- uses: ./.github/actions/setup-for-scripts
2828

2929
- name: Fetch TypeScript versions and release dates from npm

0 commit comments

Comments
 (0)