Skip to content

Commit 39e08dc

Browse files
chore(deps): bump the dependencies group with 3 updates (#415)
* chore(deps): bump the dependencies group with 3 updates Bumps the dependencies group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [super-linter/super-linter](https://github.com/super-linter/super-linter) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.0.0...v6.1.0) Updates `super-linter/super-linter` from 8.2.1 to 8.3.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@2bdd90e...502f4fe) Updates `github/codeql-action` from 4.31.4 to 4.31.5 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@e12f017...fdbfb4d) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: super-linter/super-linter dependency-version: 8.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: github/codeql-action dependency-version: 4.31.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * fix: linting - add dependabot cooldown feature (7 days). [docs](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#cooldown-) Signed-off-by: jmeridth <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: jmeridth <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jmeridth <[email protected]>
1 parent 1353a9e commit 39e08dc

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "weekly"
8+
cooldown:
9+
default-days: 7
810
commit-message:
911
prefix: "chore(deps)"
1012
labels: ["python", "dependencies"]
@@ -18,6 +20,8 @@ updates:
1820
directory: "/"
1921
schedule:
2022
interval: "weekly"
23+
cooldown:
24+
default-days: 7
2125
commit-message:
2226
prefix: "chore(deps)"
2327
labels: ["github_actions", "dependencies"]
@@ -31,6 +35,8 @@ updates:
3135
directory: "/"
3236
schedule:
3337
interval: "weekly"
38+
cooldown:
39+
default-days: 7
3440
commit-message:
3541
prefix: "chore(deps)"
3642
labels: ["docker", "dependencies"]

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
persist-credentials: false
3232

3333
- name: Set up Python
34-
uses: actions/setup-python@v6.0.0
34+
uses: actions/setup-python@v6.1.0
3535
with:
3636
python-version: 3.12
3737

.github/workflows/linter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
fetch-depth: 0
2626
persist-credentials: false
2727
- name: Setup Python
28-
uses: actions/setup-python@v6.0.0
28+
uses: actions/setup-python@v6.1.0
2929
with:
3030
python-version: "3.12"
3131
- name: Install dependencies
3232
run: |
3333
python -m pip install --upgrade pip
3434
pip install -r requirements.txt -r requirements-test.txt
3535
- name: Lint Code Base
36-
uses: super-linter/super-linter@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2
36+
uses: super-linter/super-linter@502f4fe48a81a392756e173e39a861f8c8efe056
3737
env:
3838
DEFAULT_BRANCH: main
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
persist-credentials: false
2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v6.0.0
26+
uses: actions/setup-python@v6.1.0
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install dependencies

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@e12f0178983d466f2f6028f5cc7a6d786fd97f4b
45+
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2
4646
with:
4747
sarif_file: results.sarif

0 commit comments

Comments
 (0)