@@ -22,36 +22,36 @@ jobs:
2222 - uses : actions/checkout@v4
2323 with :
2424 fetch-depth : 1
25- - uses : actions/setup-node@v3
25+ - uses : actions/setup-node@v4
2626 with :
2727 node-version : 18
2828 - name : Configure JDK
29- uses : actions/setup-java@v3
29+ uses : actions/setup-java@v4
3030 with :
3131 distribution : ' temurin'
3232 java-version : ' 17'
33- - uses : actions/cache/restore@v3
33+ - uses : actions/cache/restore@v4
3434 name : Yarn Cache Restore
3535 id : yarn-cache
3636 with :
3737 path : .yarn/cache
3838 key : ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
3939 restore-keys : ${{ runner.os }}-yarn-v1
4040 - name : Yarn Install
41- uses : nick-fields/retry@v2
41+ uses : nick-fields/retry@v3
4242 with :
4343 timeout_minutes : 15
4444 retry_wait_seconds : 30
4545 max_attempts : 3
4646 command : yarn && yarn lerna:prepare
4747 - name : Lint
48- uses : nick-fields/retry@v2
48+ uses : nick-fields/retry@v3
4949 with :
5050 timeout_minutes : 3
5151 retry_wait_seconds : 10
5252 max_attempts : 3
5353 command : yarn lint
54- - uses : actions/cache/save@v3
54+ - uses : actions/cache/save@v4
5555 name : Yarn Cache Save
5656 if : " ${{ github.ref == 'refs/heads/main' }}"
5757 with :
@@ -67,26 +67,26 @@ jobs:
6767 - uses : actions/checkout@v4
6868 with :
6969 fetch-depth : 1
70- - uses : actions/setup-node@v3
70+ - uses : actions/setup-node@v4
7171 with :
7272 node-version : 18
73- - uses : actions/cache/restore@v3
73+ - uses : actions/cache/restore@v4
7474 name : Yarn Cache Restore
7575 id : yarn-cache
7676 with :
7777 path : .yarn/cache
7878 key : ${{ runner.os }}-yarn-v1-${{ hashFiles('yarn.lock') }}
7979 restore-keys : ${{ runner.os }}-yarn-v1
8080 - name : Yarn Install
81- uses : nick-fields/retry@v2
81+ uses : nick-fields/retry@v3
8282 with :
8383 timeout_minutes : 15
8484 retry_wait_seconds : 30
8585 max_attempts : 3
8686 command : yarn && yarn lerna:prepare
8787 - name : Lint
8888 run : yarn tsc:compile
89- - uses : actions/cache/save@v3
89+ - uses : actions/cache/save@v4
9090 name : Yarn Cache Save
9191 if : " ${{ github.ref == 'refs/heads/main' }}"
9292 with :
@@ -102,33 +102,33 @@ jobs:
102102 - uses : actions/checkout@v4
103103 with :
104104 fetch-depth : 1
105- - uses : actions/setup-node@v3
105+ - uses : actions/setup-node@v4
106106 with :
107107 node-version : 18
108- - uses : actions/cache/restore@v3
108+ - uses : actions/cache/restore@v4
109109 name : Yarn Cache Restore
110110 id : yarn-cache
111111 with :
112112 path : .yarn/cache
113113 key : ${{ runner.os }}-yarn-with-website-v1-${{ hashFiles('yarn.lock') }}
114114 restore-keys : ${{ runner.os }}-yarn-with-website-v1
115115 - name : Yarn Install
116- uses : nick-fields/retry@v2
116+ uses : nick-fields/retry@v3
117117 with :
118118 timeout_minutes : 15
119119 retry_wait_seconds : 30
120120 max_attempts : 3
121121 command : yarn && yarn lerna:prepare
122122 - name : Yarn Install (Website)
123- uses : nick-fields/retry@v2
123+ uses : nick-fields/retry@v3
124124 with :
125125 timeout_minutes : 3
126126 retry_wait_seconds : 30
127127 max_attempts : 3
128128 command : cd website && yarn
129129 - name : Generate TypeDoc
130130 run : node -e "require('./website/scripts/generate-typedoc').generateTypedoc()"
131- - uses : actions/cache/save@v3
131+ - uses : actions/cache/save@v4
132132 name : Yarn Cache Save
133133 if : " ${{ github.ref == 'refs/heads/main' }}"
134134 with :
0 commit comments