Skip to content

Commit f517d66

Browse files
committed
Merge branch 'main' of github.com:MISP/misp-objects into main
2 parents 499392c + 475a610 commit f517d66

2 files changed

Lines changed: 37 additions & 1 deletion

File tree

.github/workflows/nosetests.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Python application
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: [3.6, 3.7, 3.8, 3.9]
12+
13+
steps:
14+
15+
- uses: actions/checkout@v2
16+
17+
- name: Set up Python ${{matrix.python-version}}
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: ${{matrix.python-version}}
21+
22+
- name: Initialize submodules
23+
run: git submodule update --init --recursive
24+
25+
- name: Install system dependencies
26+
run: |
27+
sudo apt install jq moreutils
28+
29+
- name: Install Python dependencies
30+
run: |
31+
python -m pip install --upgrade jsonschema
32+
33+
- name: Test
34+
run: |
35+
./validate_all.sh

objects/file/definition.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,7 @@
451451
"description": "Free text value to attach to the file",
452452
"disable_correlation": true,
453453
"misp-attribute": "text",
454+
"multiple": true,
454455
"recommended": false,
455456
"ui-priority": 1
456457
},
@@ -496,5 +497,5 @@
496497
"fullpath"
497498
],
498499
"uuid": "688c46fb-5edb-40a3-8273-1af7923e2215",
499-
"version": 23
500+
"version": 24
500501
}

0 commit comments

Comments
 (0)