Skip to content

Commit 8fdafdf

Browse files
Upgrade: Bump the actions group with 4 updates (#29)
Bumps the actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [OpenTTD/actions](https://github.com/openttd/actions), [actions/setup-python](https://github.com/actions/setup-python) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) Updates `OpenTTD/actions` from 2 to 5 - [Release notes](https://github.com/openttd/actions/releases) - [Commits](OpenTTD/actions@v2...v5) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: OpenTTD/actions dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 35e49cb commit 8fdafdf

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/commit-checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 4
1616

1717
- name: Get pull-request commits
18-
uses: OpenTTD/actions/checkout-pull-request@v2
18+
uses: OpenTTD/actions/checkout-pull-request@v5
1919

2020
- name: Check commits
2121
uses: OpenTTD/OpenTTD-git-hooks@main

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Set up Python
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.8'
2121

.github/workflows/testing.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,35 +19,35 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: 3.8
2828

2929
- name: Install dependencies
3030
run: python -m pip install -e .
3131

3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@v2
33+
uses: github/codeql-action/init@v3
3434
with:
3535
languages: python
3636
queries: security-and-quality
3737
source-root: .
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v2
40+
uses: github/codeql-action/analyze@v3
4141

4242
flake8:
4343
name: Flake8
44-
uses: OpenTTD/actions/.github/workflows/rw-py-flake8.yml@v4
44+
uses: OpenTTD/actions/.github/workflows/rw-py-flake8.yml@v5
4545
with:
4646
python-path: openttd_protocol
4747

4848
black:
4949
name: Black
50-
uses: OpenTTD/actions/.github/workflows/rw-py-black.yml@v4
50+
uses: OpenTTD/actions/.github/workflows/rw-py-black.yml@v5
5151
with:
5252
python-version: 3.8
5353
python-path: openttd_protocol
@@ -58,10 +58,10 @@ jobs:
5858

5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v3
61+
uses: actions/checkout@v4
6262

6363
- name: Set up Python 3.8
64-
uses: actions/setup-python@v4
64+
uses: actions/setup-python@v5
6565
with:
6666
python-version: 3.8
6767

@@ -81,4 +81,4 @@ jobs:
8181
- pytest
8282
# not codeql, as that reports its own status
8383

84-
uses: OpenTTD/actions/.github/workflows/rw-annotation-check.yml@v4
84+
uses: OpenTTD/actions/.github/workflows/rw-annotation-check.yml@v5

0 commit comments

Comments
 (0)