8000 chore(deps): pin GitHub Actions · python-gitlab/python-gitlab@8dbaa5c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8dbaa5c

Browse files
nejchJohnVillalovos
authored andcommitted
chore(deps): pin GitHub Actions
1 parent 37d14bd commit 8dbaa5c

File tree

7 files changed

+24
-17
lines changed

7 files changed

+24
-17
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
sphinx:
2323
runs-on: ubuntu-20.04
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v3.1.0
2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v4.2.0
2828
with:
2929
python-version: "3.10"
3030
- name: Install dependencies
@@ -34,17 +34,17 @@ jobs:
3434
TOXENV: docs
3535
run: tox
3636
- name: Archive generated docs
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v3.1.0
3838
with:
3939
name: html-docs
4040
path: build/sphinx/html/
4141

4242
twine-check:
4343
runs-on: ubuntu-20.04
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v3.1.0
4646
- name: Set up Python
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v4.2.0
4848
with:
4949
python-version: "3.10"
5050
- name: Install dependencies

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
lint:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v3.1.0
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v4.2.0
2929
with:
3030
python-version: "3.10"
3131
- run: pip install --upgrade tox

.github/workflows/pre_commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
pre_commit:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v3
33-
- uses: actions/setup-python@v4
32+
- uses: actions/checkout@v3.1.0
33+
- uses: actions/setup-python@v4.2.0
3434
with:
3535
python-version: "3.10"
3636
- name: Install pre-commit

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.repository == 'python-gitlab/python-gitlab'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v3.1.0
1414
with:
1515
fetch-depth: 0
1616
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
stale:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/stale@v5
18+
- uses: actions/stale@v6.0.0
1919
with:
2020
any-of-labels: 'need info,Waiting for response'
2121
stale-issue-message: >

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545
version: "3.10"
4646
toxenv: py310,smoke
4747
steps:
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v3.1.0
4949
- name: Set up Python ${{ matrix.python.version }}
50-
uses: actions/setup-python@v4
50+
uses: actions/setup-python@v4.2.0
5151
with:
5252
python-version: ${{ matrix.python.version }}
5353
- name: Install dependencies
@@ -63,9 +63,9 @@ jobs:
6363
matrix:
6464
toxenv: [api_func_v4, cli_func_v4]
6565
steps:
66-
- uses: actions/checkout@v3
66+
- uses: actions/checkout@v3.1.0
6767
- name: Set up Python
68-
uses: actions/setup-python@v4
68+
uses: actions/setup-python@v4.2.0
6969
with:
7070
python-version: "3.10"
7171
- name: Install dependencies
@@ -84,9 +84,9 @@ jobs:
8484
coverage:
8585
runs-on: ubuntu-20.04
8686
steps:
87-
- uses: actions/checkout@v3
87+
- uses: actions/checkout@v3.1.0
8888
- name: Set up Python ${{ matrix.python-version }}
89-
uses: actions/setup-python@v4
89+
uses: actions/setup-python@v4.2.0
9090
with:
9191
python-version: "3.10"
9292
- name: Install dependencies

.renovaterc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@
1919
}
2020
],
2121
"packageRules": [
22+
{
23+
"depTypeList": [
24+
"action"
25+
],
26+
"extractVersion": "^(?<version>v\\d+\\.\\d+\\.\\d+)$",
27+
"versioning": "regex:^v(?<major>\\d+)(\\.(?<minor>\\d+)\\.(?<patch>\\d+))?$"
28+
},
2229
{
2330
"packagePatterns": [
2431
"^gitlab\/gitlab-.+$"

0 commit comments

Comments
 (0)
0