Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: downgrade ubuntu version #897

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
meta:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
matrix_supportedSplunk: ${{ steps.matrix.outputs.supportedSplunk }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:

fossa-scan:
continue-on-error: true
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: run fossa anlyze and create report
Expand All @@ -47,13 +47,13 @@ jobs:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}

compliance-copyrights:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: apache/[email protected]

pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: pre-commit/[email protected]

semgrep:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
name: security-sast-semgrep
steps:
- uses: actions/checkout@v4
Expand All @@ -72,7 +72,7 @@ jobs:
publishToken: ${{ secrets.SEMGREP_PUBLISH_TOKEN }}

test-splunk-unit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -85,7 +85,7 @@ jobs:


test-splunk-external:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- meta
- pre-commit
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- fossa-scan
- compliance-copyrights
- test-splunk-unit
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
needs:
- test-splunk-external
- test-splunk-matrix
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading