@@ -13,23 +13,23 @@ jobs:
1313 build :
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
16+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717 with :
1818 fetch-depth : 0
1919 persist-credentials : false
20- - uses : pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2 .0
20+ - uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4 .0
2121 with :
2222 version : 10
2323 - name : ' Setup Node.js with pnpm cache'
24- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
24+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
2525 with :
2626 node-version : 20
2727 cache : ' pnpm'
2828
2929 - run : pnpm install
3030 - run : pnpm build
3131 - name : ' Save build output'
32- uses : actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
32+ uses : actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3333 with :
3434 path : ' ${{ github.workspace }}'
3535 key : ' ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
@@ -42,26 +42,26 @@ jobs:
4242 shard : [ 1, 2, 3, 4, 5 ]
4343 services :
4444 postgres :
45- image : postgres:16.0
45+ image : postgres:16.13
4646 env :
4747 POSTGRES_USER : postgres
4848 POSTGRES_PASSWORD : test123
4949 ports :
5050 - 5432:5432
5151 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
5252 steps :
53- - uses : pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2 .0
53+ - uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4 .0
5454 with :
5555 version : 10
5656 - name : ' Restore build output'
57- uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
57+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5858 with :
5959 path : ' ${{ github.workspace }}'
6060 key : ' ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
6161 restore-keys : ' ${{ runner.os }}-build-${{ github.sha }}'
6262 fail-on-cache-miss : true
6363 - name : ' Setup Node.js with pnpm cache'
64- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
64+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
6565 with :
6666 node-version : 20
6767 cache : ' pnpm'
8585 runs-on : ubuntu-latest
8686 needs : [ test-integration ]
8787 steps :
88- - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
88+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8989 with :
9090 fetch-depth : 0
9191 persist-credentials : false
9696 path : coverage
9797 - name : Merge Code Coverage
9898 run : npx nyc merge coverage/ coverage/coverage-final.json
99- - uses : codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
99+ - uses : codecov/codecov-action@75cd11691c0faa626561e295848008c8a7dddffe # v5.5.4
100100 with :
101101 token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos but sometimes fails without :|
102102 fail_ci_if_error : false
@@ -105,18 +105,18 @@ jobs:
105105 needs : build
106106 runs-on : ubuntu-latest
107107 steps :
108- - uses : pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2 .0
108+ - uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4 .0
109109 with :
110110 version : 10
111111 - name : ' Restore build output'
112- uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
112+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
113113 with :
114114 path : ' ${{ github.workspace }}'
115115 key : ' ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
116116 restore-keys : ' ${{ runner.os }}-build-${{ github.sha }}'
117117 fail-on-cache-miss : true
118118 - name : ' Setup Node.js with pnpm cache'
119- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
119+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
120120 with :
121121 node-version : 20
122122 cache : ' pnpm'
@@ -129,18 +129,18 @@ jobs:
129129 needs : build
130130 runs-on : ubuntu-latest
131131 steps :
132- - uses : pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2 .0
132+ - uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4 .0
133133 with :
134134 version : 10
135135 - name : ' Restore build output'
136- uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
136+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
137137 with :
138138 path : ' ${{ github.workspace }}'
139139 key : ' ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
140140 restore-keys : ' ${{ runner.os }}-build-${{ github.sha }}'
141141 fail-on-cache-miss : true
142142 - name : ' Setup Node.js with pnpm cache'
143- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
143+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
144144 with :
145145 node-version : 20
146146 cache : ' pnpm'
@@ -164,21 +164,21 @@ jobs:
164164 GH_EMAIL : ${{secrets.GH_EMAIL}}
165165 runs-on : ubuntu-latest
166166 steps :
167- - uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
167+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
168168 with :
169169 fetch-depth : 0
170170 token : ${{secrets.GH_TOKEN}}
171- - uses : pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2 .0
171+ - uses : pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4 .0
172172 with :
173173 version : 10
174174 - name : ' Setup Node.js with pnpm cache'
175- uses : actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2 .0
175+ uses : actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4 .0
176176 with :
177177 node-version : 20
178178 cache : ' pnpm'
179179
180180 - name : ' Restore build output'
181- uses : actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
181+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
182182 with :
183183 path : ' ${{ github.workspace }}'
184184 key : ' ${{ runner.os }}-build-${{ github.sha }}-${{ github.run_id }}'
0 commit comments