Skip to content

Commit 556323a

Browse files
authored
Create cves.yml
1 parent 76c549f commit 556323a

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

.github/workflows/cves.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CVE Tests
2+
# We expose the actions secrets to the job with a single key
3+
# one script (update_jira) currently uses the jira pip module,
4+
# while custom library (libraries/ServiceManagementSystem) uses the atlassian module
5+
# So, we have a bit of duplication here temporarily.
6+
# env:
7+
# JIRA_SERVER: ${{ secrets.JIRA_SERVER }}
8+
# JIRA_EMAIL: ${{ secrets.JIRA_EMAIL }}
9+
# JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }}
10+
# ATLASSIAN_URL: ${{ secrets.ATLASSIAN_URL }}
11+
# ATLASSIAN_TOKEN: ${{ secrets.ATLASSIAN_TOKEN }}
12+
# ATLASSIAN_USERNAME: ${{ secrets.ATLASSIAN_USERNAME }}
13+
# gocdb_password: ${{ secrets.GOCDB_PASSWORD }}
14+
# gocdb_username: ${{ secrets.GOCDB_USERNAME }}
15+
# username: ${{ secrets.federated_user_01_username }}
16+
# password: ${{ secrets.federated_user_01_password }}
17+
# personal_username: ${{ secrets.personal_username }}
18+
# personal_password: ${{ secrets.personal_password }}
19+
# MS5_MSG_TOKEN: ${{ secrets.MS5_MSG_TOKEN }}
20+
# K6_VERSION: v0.52.0
21+
# AUTHZ_HEADER: ${{ secrets.AUTHZ_HEADER }}
22+
# cmdb_password: ${{ secrets.CMDB_PASSWORD }}
23+
# cmdb_username: ${{ secrets.CMDB_USERNAME }}
24+
# RP_API_KEY: ${{ secrets.RP_API_KEY }}
25+
# ZAMMAD_TOKEN: ${{ secrets.ZAMMAD_TOKEN }}
26+
# EOSC_CORE_MON_ACCESS_TOKEN: ${{ secrets.EOSC_CORE_MON_ACCESS_TOKEN }}
27+
# EOSC_EXCH_MON_ACCESS_TOKEN: ${{ secrets.EOSC_EXCH_MON_ACCESS_TOKEN }}
28+
# DTC_VERSION: latest
29+
on:
30+
push:
31+
branches:
32+
- devel
33+
pull_request:
34+
branches:
35+
- devel
36+
jobs:
37+
# This is to check the
38+
cve:
39+
runs-on: qa
40+
steps:
41+
- name: Checkout code
42+
uses: actions/checkout@v4

0 commit comments

Comments
 (0)