Skip to content

Commit e6faf5a

Browse files
authored
fix: Encrypt google kms key (#603)
* fix: SecretStrings for signers * fix: Backwards compatibility for redis data * fix: Improvements * fix: Fix test case * fix: Fix jupiter tests * fix: Fix codeQL issue * test: Adding test cases * chore: Fixes * fix: Improvements * fix: Fix api key encryption * fix: Fix for reading existing data * fix: Adding free space for prop tests * fix: Simplyfing logic for decrypting * fix: Minor fix
1 parent 19f47dc commit e6faf5a

File tree

20 files changed

+1799
-625
lines changed

20 files changed

+1799
-625
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,17 @@ jobs:
292292
npm install -g typescript ts-node
293293
ts-node --version
294294
tsc --version
295+
- name: free disk space
296+
run: |
297+
sudo swapoff -a
298+
sudo rm -f /swapfile
299+
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
300+
sudo apt clean
301+
if [[ $(docker image ls -aq) ]]; then
302+
docker rmi $(docker image ls -aq)
303+
else
304+
echo "No Docker images found to remove"
305+
fi
295306
- name: Prepare
296307
id: init
297308
uses: ./.github/actions/prepare

0 commit comments

Comments
 (0)