Skip to content

Commit 6b3f5f1

Browse files
Merge branch 'main' into static-scanning
Signed-off-by: Justin Abrahms <[email protected]>
2 parents a5ac4da + faca917 commit 6b3f5f1

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

.github/dependabot.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
4+
# Maintain dependencies for GitHub Actions
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
10+
# Maintain dependencies for npm
11+
- package-ecosystem: "maven"
12+
directory: "/"
13+
commit-message:
14+
prefix: "chore"
15+
schedule:
16+
interval: "weekly"

.github/workflows/merge.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ on:
1212
branches: [ master, main ]
1313

1414
permissions:
15-
packages: write
1615
contents: read
1716

1817
jobs:
1918
build:
2019

2120
runs-on: ubuntu-latest
21+
permissions:
22+
packages: write
2223

2324
steps:
2425
- uses: actions/checkout@v3

.github/workflows/pullrequest.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
pull_request:
44
branches: [ master, main ]
55
permissions:
6-
packages: write
76
contents: read
87

98
jobs:
@@ -15,6 +14,8 @@ jobs:
1514
ports:
1615
- 8013:8013
1716

17+
permissions:
18+
packages: write
1819
steps:
1920
- name: Check out the code
2021
uses: actions/checkout@v3

.github/workflows/static-code-scanning.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ name: "Code Scanning - Action"
33
# Docs for this at https://github.com/github/codeql-action#usage
44

55
on:
6-
# push:
7-
# branches: [main]
8-
# pull_request:
9-
# branches: [main]
106
schedule:
117
# ┌───────────── minute (0 - 59)
128
# │ ┌───────────── hour (0 - 23)

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
<dependency>
146146
<groupId>io.cucumber</groupId>
147147
<artifactId>cucumber-bom</artifactId>
148-
<version>7.8.0</version>
148+
<version>7.8.1</version>
149149
<type>pom</type>
150150
<scope>import</scope>
151151
</dependency>

0 commit comments

Comments
 (0)