Skip to content

Commit a8099d5

Browse files
Merge pull request #6 from JeremyMcCormick/feature/issue-959/implement-github-actions
Add write permissions to release workflow
2 parents c7a1ba2 + ca25647 commit a8099d5

3 files changed

Lines changed: 43 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: release
22

3+
permissions: write-all
4+
35
on:
46
workflow_dispatch:
57
inputs:

online-recon/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,39 +29,31 @@
2929
<dependency>
3030
<groupId>org.json</groupId>
3131
<artifactId>json</artifactId>
32-
<version>20180813</version>
3332
</dependency>
34-
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
3533
<dependency>
3634
<groupId>commons-io</groupId>
3735
<artifactId>commons-io</artifactId>
38-
<version>2.6</version>
3936
</dependency>
4037
<dependency>
4138
<groupId>org.freehep</groupId>
4239
<artifactId>freehep-jaida-remote</artifactId>
43-
<version>3.4.13</version>
4440
</dependency>
4541
<!-- https://mvnrepository.com/artifact/org.sonatype.nexus/google-guava-eventbus -->
4642
<dependency>
4743
<groupId>org.sonatype.nexus</groupId>
4844
<artifactId>google-guava-eventbus</artifactId>
49-
<version>3.2.0-01</version>
5045
</dependency>
5146
<dependency>
5247
<groupId>org.java-websocket</groupId>
5348
<artifactId>Java-WebSocket</artifactId>
54-
<version>1.5.2</version>
5549
</dependency>
5650
<dependency>
5751
<groupId>org.slf4j</groupId>
5852
<artifactId>slf4j-api</artifactId>
59-
<version>1.7.5</version>
6053
</dependency>
6154
<dependency>
6255
<groupId>org.slf4j</groupId>
6356
<artifactId>slf4j-log4j12</artifactId>
64-
<version>1.7.5</version>
6557
</dependency>
6658
</dependencies>
6759
<build>
@@ -70,7 +62,6 @@
7062
<plugin>
7163
<groupId>org.codehaus.mojo</groupId>
7264
<artifactId>appassembler-maven-plugin</artifactId>
73-
<version>1.10</version>
7465
<executions>
7566
<execution>
7667
<phase>install</phase>

pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,47 @@
313313
<artifactId>itextpdf</artifactId>
314314
<version>5.5.12</version>
315315
</dependency>
316+
<dependency>
317+
<groupId>org.sonatype.nexus</groupId>
318+
<artifactId>google-guava-eventbus</artifactId>
319+
<version>3.2.0-01</version>
320+
</dependency>
321+
<dependency>
322+
<groupId>org.java-websocket</groupId>
323+
<artifactId>Java-WebSocket</artifactId>
324+
<version>1.5.2</version>
325+
</dependency>
326+
<dependency>
327+
<groupId>org.slf4j</groupId>
328+
<artifactId>slf4j-api</artifactId>
329+
<version>1.7.5</version>
330+
</dependency>
331+
<dependency>
332+
<groupId>org.slf4j</groupId>
333+
<artifactId>slf4j-log4j12</artifactId>
334+
<version>1.7.5</version>
335+
</dependency>
336+
<dependency>
337+
<groupId>org.json</groupId>
338+
<artifactId>json</artifactId>
339+
<version>20180813</version>
340+
</dependency>
341+
<dependency>
342+
<groupId>commons-io</groupId>
343+
<artifactId>commons-io</artifactId>
344+
<version>2.6</version>
345+
</dependency>
346+
<dependency>
347+
<groupId>org.freehep</groupId>
348+
<artifactId>freehep-jaida-remote</artifactId>
349+
<version>3.4.13</version>
350+
<exclusions>
351+
<exclusion>
352+
<groupId>jdom</groupId>
353+
<artifactId>jdom</artifactId>
354+
</exclusion>
355+
</exclusions>
356+
</dependency>
316357
<!-- lcsim deps below here -->
317358
<dependency>
318359
<groupId>org.lcsim</groupId>

0 commit comments

Comments
 (0)