Skip to content

fix: Changing actor's default ip address to private ip address #335

fix: Changing actor's default ip address to private ip address

fix: Changing actor's default ip address to private ip address #335

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [main, develop]
paths:
- "Scenamatica/**"
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
paths:
- "Scenamatica/**"
schedule:
- cron: '31 8 * * 4'
jobs:
analyze:
name: Analyze
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v3
id: sj
with:
java-version: 8
distribution: zulu
cache: maven
- uses: PeyaPeyaPeyang/nmsaction@v6
if: "steps.sj.outputs.cache-hit != 'true'"
with:
rev: 1.16.5, 1.13.2, 1.14.4
- name: Install nms into m2
if: "steps.sj.outputs.cache-hit != 'true'"
run: |
mkdir -p $HOME/.m2/repository
cp -a nms-build/.m2/repository/. $HOME/.m2/repository
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.8.2
- name: Build with Maven
run: |
mvn -B package --file Scenamatica/pom.xml -D"jar.finalName=Scenamatica" -P release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3