File tree Expand file tree Collapse file tree 10 files changed +21
-21
lines changed
Expand file tree Collapse file tree 10 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1212 check-parse-results :
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
15+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1717 with :
1818 node-version : ' lts/*'
Original file line number Diff line number Diff line change 3333 # - macos-latest # OOMs
3434 runs-on : ${{ matrix.os }}
3535 steps :
36- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
36+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3737 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3838 with :
3939 node-version : ' lts/*'
6262 name : changesets
6363 runs-on : ubuntu-latest
6464 steps :
65- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
65+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6666 with :
6767 fetch-depth : 0
6868 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
8888 name : format
8989 runs-on : ubuntu-latest
9090 steps :
91- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
91+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9292 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
9393 with :
9494 node-version : ' lts/*'
Original file line number Diff line number Diff line change 5656 # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5757 steps :
5858 - name : Checkout repository
59- uses : actions/checkout@v4
59+ uses : actions/checkout@v5
6060
6161 # Initializes the CodeQL tools for scanning.
6262 - name : Initialize CodeQL
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
13+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1414 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1515 with :
1616 node-version : ' 20.x'
Original file line number Diff line number Diff line change 2222 build :
2323 runs-on : ubuntu-latest
2424 steps :
25- - uses : actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
25+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626
2727 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2828 with :
6666
6767 steps :
6868 - name : Download artifact from build job
69- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3 .0
69+ uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0 .0
7070 with :
7171 name : node-app
7272
Original file line number Diff line number Diff line change 1111 contents : write
1212
1313 steps :
14- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
14+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1515 - run : |
1616 if [[ $(git log --format="%H" --since "50 days" | head -c1 | wc -c) == 0 ]]; then
1717 git config user.email "typescriptbot@microsoft.com"
Original file line number Diff line number Diff line change 1616 publish :
1717 runs-on : ubuntu-latest
1818 steps :
19- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
19+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2121 with :
2222 node-version : ' lts/*'
2626 id : pnpm-cache
2727 shell : bash
2828 run : echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
29- - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
29+ - uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3030 with :
3131 path : ${{ steps.pnpm-cache.outputs.store }}
3232 key : ${{ runner.os }}-pnpm-store-cache-${{ github.run_id }}-${{ github.run_attempt }}
3535
3636 - run : pnpm install --frozen-lockfile
3737 - run : pnpm build
38- - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
38+ - uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3939 with :
4040 path : ./cache
4141 key : pacote-cache-${{ github.run_id }}-${{ github.run_attempt }}
@@ -45,14 +45,14 @@ jobs:
4545 env :
4646 GITHUB_ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4747 NPM_TYPES_TOKEN : ${{ secrets.NPM_TYPES_TOKEN }}
48- - uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
48+ - uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4949 if : always()
5050 with :
5151 path : ./cache
5252 key : pacote-cache-${{ github.run_id }}-${{ github.run_attempt }}
5353
5454 - run : pnpm store prune
55- - uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
55+ - uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
5656 with :
5757 path : ${{ steps.pnpm-cache.outputs.store }}
5858 key : ${{ runner.os }}-pnpm-store-cache-${{ github.run_id }}-${{ github.run_attempt }}
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
1515 publish-registry :
1616 runs-on : ubuntu-latest
1717 steps :
18- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
18+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2020 with :
2121 node-version : ' lts/*'
2222 - uses : pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
2323 - run : pnpm config set store-dir $PNPM_CACHE_FOLDER
2424 - run : pnpm install --frozen-lockfile
2525 - run : pnpm build
26- - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
26+ - uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
2727 with :
2828 path : ./cache
2929 key : pacote-cache-${{ github.run_id }}-${{ github.run_attempt}}
3636 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
3737 with :
3838 path : packages/definitions-parser/data/
39- - uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
39+ - uses : actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4040 if : always()
4141 with :
4242 path : ./cache
Original file line number Diff line number Diff line change 2424 publish :
2525 runs-on : ubuntu-latest
2626 steps :
27- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
27+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828 - uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2929 with :
3030 node-version : ' lts/*'
3333 id : pnpm-cache
3434 shell : bash
3535 run : echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
36- - uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
36+ - uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
3737 with :
3838 path : ${{ steps.pnpm-cache.outputs.store }}
3939 key : ${{ runner.os }}-pnpm-store-cache-${{ github.run_id }}-${{ github.run_attempt }}
Original file line number Diff line number Diff line change 2323 publish :
2424 runs-on : ubuntu-latest
2525 steps :
26- - uses : actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
26+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2727 with :
2828 fetch-depth : 0
2929 token : ${{ secrets.TYPESCRIPT_BOT_TOKEN }}
3535 - run : pnpm install
3636 - run : pnpm build
3737 - run : pnpm test
38- - uses : changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10
38+ - uses : changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3
3939 with :
4040 publish : pnpm ci:publish
4141 env :
You can’t perform that action at this time.
0 commit comments