Skip to content

Commit 33e3d54

Browse files
authored
Merge pull request #188 from jamals86/027-pg-transactions
027 pg transactions
2 parents acdbd2e + 56d863e commit 33e3d54

199 files changed

Lines changed: 5841 additions & 1989 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,23 @@ jobs:
5858
libssl-dev
5959
6060
- name: Cache cargo registry
61-
uses: actions/cache@v4
61+
uses: actions/cache@v5
6262
with:
6363
path: ~/.cargo/registry
6464
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
6565
restore-keys: |
6666
${{ runner.os }}-cargo-registry-
6767
6868
- name: Cache cargo index
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
with:
7171
path: ~/.cargo/git
7272
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
7373
restore-keys: |
7474
${{ runner.os }}-cargo-index-
7575
7676
- name: Cache cargo build
77-
uses: actions/cache@v4
77+
uses: actions/cache@v5
7878
with:
7979
path: target
8080
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -106,23 +106,23 @@ jobs:
106106
# libssl-dev
107107

108108
# - name: Cache cargo registry
109-
# uses: actions/cache@v4
109+
# uses: actions/cache@v5
110110
# with:
111111
# path: ~/.cargo/registry
112112
# key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
113113
# restore-keys: |
114114
# ${{ runner.os }}-cargo-registry-
115115

116116
# - name: Cache cargo index
117-
# uses: actions/cache@v4
117+
# uses: actions/cache@v5
118118
# with:
119119
# path: ~/.cargo/git
120120
# key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
121121
# restore-keys: |
122122
# ${{ runner.os }}-cargo-index-
123123

124124
# - name: Cache cargo build
125-
# uses: actions/cache@v4
125+
# uses: actions/cache@v5
126126
# with:
127127
# path: target
128128
# key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -154,23 +154,23 @@ jobs:
154154
libssl-dev
155155
156156
- name: Cache cargo registry
157-
uses: actions/cache@v4
157+
uses: actions/cache@v5
158158
with:
159159
path: ~/.cargo/registry
160160
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
161161
restore-keys: |
162162
${{ runner.os }}-cargo-registry-
163163
164164
- name: Cache cargo index
165-
uses: actions/cache@v4
165+
uses: actions/cache@v5
166166
with:
167167
path: ~/.cargo/git
168168
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
169169
restore-keys: |
170170
${{ runner.os }}-cargo-index-
171171
172172
- name: Cache cargo build
173-
uses: actions/cache@v4
173+
uses: actions/cache@v5
174174
with:
175175
path: target
176176
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
@@ -310,10 +310,10 @@ jobs:
310310
with:
311311
toolchain: ${{ env.RUST_VERSION }}
312312

313-
- name: Setup Node 20
313+
- name: Setup Node 22
314314
uses: actions/setup-node@v6
315315
with:
316-
node-version: 20
316+
node-version: 22
317317

318318
- name: Install cargo-license
319319
shell: bash

0 commit comments

Comments
 (0)