Skip to content

Commit 0c17787

Browse files
committed
Merge branch 'main' of github.com:htrgouvea/nipe into develop
2 parents e583aae + 79b67e0 commit 0c17787

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/zarn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
zarn:
1313
name: Security Static Analysis with ZARN
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
@@ -22,4 +22,4 @@ jobs:
2222
- name: Send result to Github Security
2323
uses: github/codeql-action/upload-sarif@v3
2424
with:
25-
sarif_file: result.sarif
25+
sarif_file: result.sarif

lib/Nipe/Engine/Start.pm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ package Nipe::Engine::Start {
33
use warnings;
44
use Nipe::Utils::Device;
55
use Nipe::Utils::Status;
6+
use Nipe::Engine::Stop;
67

78
our $VERSION = '0.0.5';
89

910
sub new {
11+
my $stop = Nipe::Engine::Stop -> new();
1012
my %device = Nipe::Utils::Device -> new();
1113
my $dnsPort = '9061';
1214
my $transferPort = '9051';
@@ -84,4 +86,4 @@ package Nipe::Engine::Start {
8486
}
8587
}
8688

87-
1;
89+
1;

0 commit comments

Comments
 (0)