Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release_rpms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
env:
AUTOCREATE_RELEASE: ${{ github.event.inputs.autocreate_release }}
PREBUILD_TAG: ${{ steps.validate-inputs.outputs.prebuild_suffix }}
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
github-token: ${{ github.event.inputs.target_repo_token || secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:

- name: "Wipe all previous assets from GitHub Release (when clean == 'yes')"
if: ${{ github.event.inputs.clean == 'yes' && github.event.inputs.dry_run != 'yes' }}
uses: actions/github-script@v6
uses: actions/github-script@v8
env:
release_id: ${{ steps.release-api.outputs.id }}
with:
Expand All @@ -278,7 +278,7 @@ jobs:

- name: "Upload RPM file(s) to GitHub Release (dry_run != 'yes')"
if: ${{ github.event.inputs.dry_run != 'yes' }}
uses: actions/github-script@v6
uses: actions/github-script@v8
env:
rpm_file_paths: ${{ steps.build-and-sign-rpm.outputs.rpm_file_paths }}
rpm_gpg_file: ${{ steps.build-and-sign-rpm.outputs.rpm_gpg_file }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag_deploy_rubygem__github-rpms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
- centos8
steps:
- name: Trigger RPM release workflow (${{ matrix.os }})
uses: actions/github-script@v6
uses: actions/github-script@v8
env:
DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
TARGET_TAG: ${{ needs.create-github-release.outputs.tag }}
Expand Down
12 changes: 4 additions & 8 deletions spec/lib/simp/cli/commands/kv/get_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@
{
"key1": {
"value": 1,
"metadata": {
}
"metadata": {}
},
"key2": {
"value": true,
Expand All @@ -77,8 +76,7 @@
"hello",
"world"
],
"metadata": {
}
"metadata": {}
},
"key4": {
"value": {
Expand Down Expand Up @@ -123,8 +121,7 @@
{
"key1": {
"value": 1,
"metadata": {
}
"metadata": {}
},
"key4": {
"value": {
Expand Down Expand Up @@ -158,8 +155,7 @@
{
"key1": {
"value": 1,
"metadata": {
}
"metadata": {}
}
}
EOM
Expand Down
27 changes: 7 additions & 20 deletions spec/lib/simp/cli/commands/kv/list_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@
]
},
"folder2": {
"keys": [

],
"keys": [],
"folders": [
"sub2_1",
"sub2_2"
Expand All @@ -109,17 +107,11 @@
"key3_1",
"key3_2"
],
"folders": [

]
"folders": []
},
"folder4": {
"keys": [

],
"folders": [

]
"keys": [],
"folders": []
}
}
EOM
Expand Down Expand Up @@ -164,12 +156,8 @@
]
},
"folder4": {
"keys": [

],
"folders": [

]
"keys": [],
"folders": []
}
}
EOM
Expand Down Expand Up @@ -231,8 +219,7 @@
"keys": {
"key1_1": {
"value": 1,
"metadata": {
}
"metadata": {}
},
"key1_2": {
"value": true,
Expand Down