-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies
- Loading branch information
1 parent
07fe4b9
commit ebf5534
Showing
2 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- id: matrix | ||
uses: splunk/addonfactory-test-matrix-action@v1.10 | ||
uses: splunk/addonfactory-test-matrix-action@v2.1 | ||
|
||
fossa-scan: | ||
continue-on-error: true | ||
|
@@ -37,7 +37,7 @@ jobs: | |
fossa report attribution --format text > /tmp/THIRDPARTY | ||
env: | ||
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: THIRDPARTY | ||
path: /tmp/THIRDPARTY | ||
|
@@ -50,33 +50,33 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: apache/skywalking-eyes@v0.5.0 | ||
- uses: apache/skywalking-eyes@v0.6.0 | ||
|
||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- uses: pre-commit/[email protected].0 | ||
- uses: pre-commit/[email protected].1 | ||
|
||
semgrep: | ||
uses: splunk/sast-scanning/.github/workflows/sast-scan.yml@main | ||
secrets: | ||
SEMGREP_KEY: ${{ secrets.SEMGREP_PUBLISH_TOKEN }} | ||
|
||
run-unit-tests: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- run: | | ||
curl -sSL https://install.python-poetry.org | python3 - --version ${{ env.POETRY_VERSION }} | ||
- id: cache-poetry | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pypoetry | ||
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }} | ||
|
@@ -88,7 +88,7 @@ jobs: | |
|
||
build: | ||
name: build | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
needs: | ||
- fossa-scan | ||
- compliance-copyrights | ||
|
@@ -98,12 +98,12 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- run: curl -sSL https://install.python-poetry.org | python3 - --version ${{ env.POETRY_VERSION }} | ||
- id: cache-poetry | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pypoetry | ||
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }} | ||
|
@@ -118,7 +118,7 @@ jobs: | |
--config=tests/testdata/Splunk_TA_UCCExample/globalConfig.json \ | ||
--ta-version=0.0.1 | ||
if: always() | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: output | ||
path: output/* | ||
|
@@ -128,7 +128,7 @@ jobs: | |
needs: | ||
- meta | ||
- build | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
if: | | ||
!contains(github.event.issue.labels.*.name, 'skip-ui-tests') | ||
permissions: | ||
|
@@ -152,16 +152,16 @@ jobs: | |
] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: output | ||
path: output/ | ||
- run: curl -sSL https://install.python-poetry.org | python3 - --version ${{ env.POETRY_VERSION }} | ||
- id: cache-poetry | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pypoetry | ||
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }} | ||
|
@@ -180,7 +180,7 @@ jobs: | |
./run_splunk.sh ${{ matrix.splunk.version }} | ||
until curl -Lsk "https://localhost:8088/services/collector/health" &>/dev/null ; do echo -n "Waiting for HEC-" && sleep 5 ; done | ||
- run: poetry run pytest tests/ui -k "${{ matrix.test_suite }}" --headless --junitxml=test-results/junit.xml | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: test-results-${{ matrix.splunk.version }}_${{ matrix.python-version }}_${{ matrix.browser }}_${{ matrix.test_suite }} | ||
|
@@ -198,13 +198,13 @@ jobs: | |
- build | ||
- run-ui-tests | ||
- run-unit-tests | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: false | ||
persist-credentials: false | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- run: curl -sSL https://install.python-poetry.org | python3 - --version ${{ env.POETRY_VERSION }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters