Skip to content

Commit f7066a9

Browse files
committed
merge conf{
2 parents 1a3463a + 299903f commit f7066a9

File tree

19 files changed

+889
-21
lines changed

19 files changed

+889
-21
lines changed

.github/workflows/get_opa_hash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
contents: write
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v6
1111
with:
1212
path: repo
1313
ref: main

.github/workflows/publish_to_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
name: Build distrbution
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
persist-credentials: false
1616
- name: Setup Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: "3.x"
2020
cache: "pip"

.github/workflows/pylint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.13"]
13+
python-version: ["3.14"]
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies

.github/workflows/run_link_checker_cron_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
markdown-link-check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: tcort/github-action-markdown-link-check@v1
1616
with:
1717
config-file: 'mlc_config.json'

.github/workflows/run_link_checker_for_md_edits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
markdown-link-check:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- uses: tcort/github-action-markdown-link-check@v1
1212
with:
1313
base-branch: 'main'

.github/workflows/run_opa_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out repository code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Setup OPA
1616
uses: open-policy-agent/setup-opa@v2

.github/workflows/run_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
markdown-link-check:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- uses: tcort/github-action-markdown-link-check@v1
2121
with:
2222
base-branch: 'main'
@@ -33,9 +33,9 @@ jobs:
3333
contents: write
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
- name: Set up Python ${{ env.PYTHON_VERSION }}
38-
uses: actions/setup-python@v5
38+
uses: actions/setup-python@v6
3939
with:
4040
python-version: ${{ env.PYTHON_VERSION }}
4141
- name: Install Python dependencies

.github/workflows/run_smoke_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ jobs:
118118
opa-version: ${{ needs.configuration.outputs.opa-version }}
119119
python-version: ${{ matrix.python-version }}
120120

121+
<<<<<<< HEAD
121122
- name: Install Pytest Coverage dependencies
122123
run: |
123124
pip install pytest pytest-cov
@@ -126,6 +127,8 @@ jobs:
126127
run: |
127128
python -m pip install .
128129
130+
=======
131+
>>>>>>> 299903ff48b3046c8c15f95f491061c10d1b5bf8
129132
- name: Run ScubaGoggles and check for correct output (macos-latest)
130133
if: ${{ matrix.operating-system == 'macos-latest'}}
131134
id: mac-path
@@ -176,6 +179,7 @@ jobs:
176179
with:
177180
path: /home/runner/scubagoggles
178181
key: ${{ runner.os }}-baseline-${{ steps.linux-path.outputs.cachepath }}
182+
<<<<<<< HEAD
179183

180184
- name: Pytest Coverage Repository
181185
run: |
@@ -191,6 +195,8 @@ jobs:
191195
uses: pypa/gh-action-pip-audit@v1.1.0
192196
with:
193197
inputs: requirements.txt
198+
=======
199+
>>>>>>> 299903ff48b3046c8c15f95f491061c10d1b5bf8
194200

195201
lhci:
196202
runs-on: ubuntu-latest

docs/installation/DownloadAndInstall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Each of the above steps is detailed in the following sections.
1919

2020
## Installing Python 3
2121

22-
Running ScubaGoggles requires Python 3.9 or higher. If Python is not installed
22+
Running ScubaGoggles requires Python 3.10 or higher. If Python is not installed
2323
in your environment, please visit the [Python website](https://www.python.org/)
2424
for instructions on how to download and install Python.
2525

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ dynamic = ["version"]
88
classifiers = ["Development Status :: 4 - Beta",
99
"Intended Audience :: Information Technology",
1010
"Topic :: Security",
11-
"Programming Language :: Python :: 3.9",
1211
"Programming Language :: Python :: 3.10",
1312
"Programming Language :: Python :: 3.11",
1413
"Programming Language :: Python :: 3.12",
15-
"Programming Language :: Python :: 3.13"]
14+
"Programming Language :: Python :: 3.13",
15+
"Programming Language :: Python :: 3.14"]
1616
dependencies = ["dnspython>=2.6.1",
1717
"google-api-python-client>=2.142.0",
1818
"google-auth-httplib2>=0.2.0",
@@ -21,7 +21,7 @@ dependencies = ["dnspython>=2.6.1",
2121
"pyyaml>=6.0.2",
2222
"requests>=2.32.3",
2323
"tqdm>=4.66.5"]
24-
requires-python = ">= 3.9"
24+
requires-python = ">= 3.10"
2525
description='SCuBA security baseline assessment tool'
2626
authors = [{name = "CISA"}]
2727
license = "CC0-1.0"

0 commit comments

Comments
 (0)