Skip to content

Commit 96bcf6d

Browse files
committed
fix pipelines
1 parent b7027bf commit 96bcf6d

File tree

7 files changed

+44
-20
lines changed

7 files changed

+44
-20
lines changed

Diff for: .github/workflows/bandit.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Security check - Bandit
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Security check - Bandit
13+
uses: ioggstream/[email protected]
14+
with:
15+
project_path: src
16+
# ignore_failure: true
17+
18+
# This is optional
19+
#- name: Security check report artifacts
20+
# uses: actions/upload-artifact@v4
21+
# with:
22+
# name: Security report
23+
# path: output/security_report.txt
24+

Diff for: .github/workflows/black.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.9]
9+
python-version: [3.11]
1010

1111
steps:
1212
# git checkout
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
# python setup
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

2121
# python cache
22-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

Diff for: .github/workflows/flake8.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.9]
9+
python-version: [3.11]
1010

1111
steps:
1212
# git checkout
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
# python setup
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

2121
# python cache
22-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

Diff for: .github/workflows/pyroma.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.9]
9+
python-version: [3.11]
1010

1111
steps:
1212
# git checkout
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
# python setup
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

2121
# python cache
22-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

Diff for: .github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
python: ["3.9"]
1212
plone: ["52"]
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515
- name: Cache eggs
16-
uses: actions/cache@v1
16+
uses: actions/cache@v4
1717
with:
1818
path: eggs
1919
key: ${{ runner.OS }}-build-python${{ matrix.python }}-${{ matrix.plone }}
2020
- name: Set up Python ${{ matrix.python }}
21-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python }}
2424
- name: Install dependencies

Diff for: .github/workflows/toc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Install doctoc
1212
run: |
1313
sudo npm install -g doctoc
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- name: Generate full TOC
1616
run: |
1717
doctoc --github --notitle README.md

Diff for: .github/workflows/zpretty.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.9]
9+
python-version: [3.11]
1010

1111
steps:
1212
# git checkout
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
# python setup
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

2121
# python cache
22-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pip
2525
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

0 commit comments

Comments
 (0)