Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/pushToPyPiOnRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

#Checkout the current branch
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

#Install the given version of Python we will test against
- name: Install Required Python Version
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ jobs:
run: poetry run ruff check --output-format=github contentctl/
- name: Run Formatter
run: poetry run ruff format --check contentctl/

2 changes: 1 addition & 1 deletion .github/workflows/testEndToEnd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

#Checkout the current branch
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

#Install the given version of Python we will test against
- name: Install Required Python Version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_against_escu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
# Checkout the current branch of contentctl repo
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5

# Checkout the develop (default) branch of security_content
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: security_content
repository: splunk/security_content
Expand Down
Loading