Skip to content

Commit cfb1ad5

Browse files
committed
Update GitHub Actions
1 parent 4f47abb commit cfb1ad5

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/lint-and-build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ jobs:
5353
python-version: "3.12"
5454
steps:
5555
- name: Checkout ${{ github.repository }}/${{ github.ref }}
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
- name: Set up Python ${{ matrix.python-version }}
58-
uses: actions/setup-python@v4
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: ${{ matrix.python-version }}
6161
cache: "pip"
@@ -77,17 +77,17 @@ jobs:
7777
python-version: "3.12"
7878
steps:
7979
- name: Checkout ${{ github.repository }}/${{ github.ref }}
80-
uses: actions/checkout@v3
80+
uses: actions/checkout@v4
8181
- name: Set up Python ${{ matrix.python-version }}
82-
uses: actions/setup-python@v4
82+
uses: actions/setup-python@v5
8383
with:
8484
python-version: ${{ matrix.python-version }}
8585
cache: "pip"
8686
cache-dependency-path: "scripts/requirements*.txt"
8787
- run: scripts/install.ps1
8888
shell: pwsh
8989
- name: Analysing the code with Pyright
90-
uses: jakebailey/pyright-action@v1
90+
uses: jakebailey/pyright-action@v2
9191
with:
9292
version: "1.1.364"
9393
working-directory: src/
@@ -106,9 +106,9 @@ jobs:
106106
python-version: "3.12"
107107
steps:
108108
- name: Checkout ${{ github.repository }}/${{ github.ref }}
109-
uses: actions/checkout@v3
109+
uses: actions/checkout@v4
110110
- name: Set up Python ${{ matrix.python-version }}
111-
uses: actions/setup-python@v4
111+
uses: actions/setup-python@v5
112112
with:
113113
python-version: ${{ matrix.python-version }}
114114
cache: "pip"
@@ -118,13 +118,13 @@ jobs:
118118
- run: scripts/build.ps1
119119
shell: pwsh
120120
- name: Upload Build Artifact
121-
uses: actions/upload-artifact@v3
121+
uses: actions/upload-artifact@v4
122122
with:
123123
name: AutoSplit for ${{ matrix.os }} (Python ${{ matrix.python-version }})
124124
path: dist/AutoSplit*
125125
if-no-files-found: error
126126
- name: Upload Build logs
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
with:
129129
name: Build logs for ${{ matrix.os }} (Python ${{ matrix.python-version }})
130130
path: |

.github/workflows/printenv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ jobs:
2222
runs-on: windows-latest
2323
steps:
2424
- name: Checkout ${{ github.repository }}/${{ github.ref }}
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- run: printenv

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,17 @@ See [CONTRIBUTING.md](/docs/CONTRIBUTING.md) for our contributing standards.
8585
Refer to the [build instructions](/docs/build%20instructions.md) if you're interested in building the application yourself or running it in Python.
8686

8787
Not a developer? You can still help through the following methods:
88-
<!-- open enhancements sorted by reactions -->
88+
8989
- Donating (see link below)
90-
- [Upvoting feature requests](../../issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement) you are interested in
90+
- [Upvoting 👍 feature requests](../../issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc+label%3Aenhancement) you are interested in <!-- open enhancements sorted by reactions -->
9191
- Sharing AutoSplit with other speedrunners
92-
- Upvoting the following upstream issues in libraries and tools we use:
92+
- Upvoting 👍 the following upstream issues in libraries and tools we use:
9393
- <https://bugreports.qt.io/browse/QTBUG-114436>
9494
- <https://bugreports.qt.io/browse/QTBUG-114635>
95+
- <https://bugreports.qt.io/browse/PYSIDE-2541>
9596
- <https://bugreports.qt.io/browse/PYSIDE-2542>
97+
- <https://github.com/pypa/pip/issues/9948>
98+
- <https://github.com/pypa/pip/pull/10837>
9699
- <https://github.com/opencv/opencv/issues?q=is%3Aissue+is%3Aopen+involves%3AAvasam+sort%3Areactions-%2B1-asc+>
97100
- <https://github.com/opencv/opencv/issues/23906>
98101
- <https://github.com/pywinrt/python-winsdk/issues/11>

0 commit comments

Comments
 (0)