Skip to content

Commit f0da89a

Browse files
authored
Update copyright header and GitHub Actions workflows (#494)
* chore: update copyright header * chore: update GitHub Actions workflows and Python version requirements * style: format YAML syntax for consistency in stringanalysis workflow
1 parent 22e58d6 commit f0da89a

155 files changed

Lines changed: 177 additions & 177 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121

2222
- name: Cache CodeQL database
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.codeql
2626
key: ${{ runner.os }}-codeql-${{ hashFiles('**/qlpack.yml') }}
2727
restore-keys: ${{ runner.os }}-codeql-
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3131
with:
3232
languages: 'python'
3333

3434
- name: Perform CodeQL Analysis
35-
uses: github/codeql-action/analyze@v2
35+
uses: github/codeql-action/analyze@v3

.github/workflows/pylint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
PEP8:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v1
13+
uses: actions/setup-python@v5
1414
with:
15-
python-version: 3.8
15+
python-version: '3.10'
1616
cache: "pip"
1717
- name: Install Python lint libraries
1818
run: pip install autopep8 autoflake isort black

.github/workflows/stringanalysis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ name: Strings Analysis
33
on:
44
pull_request:
55
push:
6-
branches: dev
7-
paths: strings/strings/*
6+
branches: [dev]
7+
paths: [strings/strings/*]
88
workflow_dispatch:
99

1010
jobs:
1111
analyze:
1212
name: Checkout Strings
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Setup Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.9.x
19+
python-version: "3.10"
2020
- name: Install Stuff
2121
run: pip install pyyaml
2222
- name: dl stuff
@@ -25,8 +25,8 @@ jobs:
2525
run: python stringizer.py && rm stringizer.py
2626
- uses: stefanzweifel/git-auto-commit-action@v4
2727
with:
28-
commit_message: 'Strings: Auto Count'
29-
commit_options: '--no-verify'
28+
commit_message: "Strings: Auto Count"
29+
commit_options: "--no-verify"
3030
repository: .
3131
commit_user_name: TeamUltroid
3232
commit_user_email: 48654350+buddhhu@users.noreply.github.com

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
44
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
55

README.md

Lines changed: 1 addition & 1 deletion

assistant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

assistant/callbackstuffs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

assistant/games.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

assistant/initial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

assistant/inlinestuff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ultroid - UserBot
2-
# Copyright (C) 2021-2025 TeamUltroid
2+
# Copyright (C) 2021-2026 TeamUltroid
33
#
44
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
55
# PLease read the GNU Affero General Public License in

0 commit comments

Comments
 (0)