Skip to content

Commit bedc471

Browse files
authored
Merge pull request #18 from sourceplusplus/renovate/actions-checkout-3.x
chore(deps): update actions/checkout action to v3
2 parents 1c34f99 + 2f222d5 commit bedc471

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cancel-in-progress: true
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- run: |
2727
PROBE_VERSION="$(python setup.py --version)"
2828
echo "SPP_PROBE_VERSION=$PROBE_VERSION" >> $GITHUB_ENV

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Flake8
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- uses: actions/setup-python@v2
2020
with:
2121
python-version: '3.6'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- run: python setup.py sdist
1414
- name: Publish a Python distribution to PyPI
1515
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: Install Python 3
2323
uses: actions/setup-python@v1
2424
with:

0 commit comments

Comments
 (0)