Skip to content

Commit e9948d9

Browse files
committed
ci: Update workflow action versions, misc cleanups in .github
- Bump action versions - Bump minimum Python version teste to 3.8, add 3.13 and 3.14 - Cleanup extra entries in FUNDING.yml
1 parent 8f197ea commit e9948d9

File tree

4 files changed

+12
-25
lines changed

4 files changed

+12
-25
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
1-
# These are supported funding model platforms
2-
31
github: arsenetar
4-
patreon: # Replace with a single Patreon username
5-
open_collective: # Replace with a single Open Collective username
6-
ko_fi: # Replace with a single Ko-fi username
7-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: # Replace with a single Liberapay username
10-
issuehunt: # Replace with a single IssueHunt username
11-
otechie: # Replace with a single Otechie username
12-
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13-
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v2
29-
28+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3029
# Initializes the CodeQL tools for scanning.
3130
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v1
31+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
3332
with:
3433
languages: ${{ matrix.language }}
3534
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -44,7 +43,7 @@ jobs:
4443
make modules
4544
- if: matrix.language == 'python'
4645
name: Autobuild
47-
uses: github/codeql-action/autobuild@v1
46+
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4847
# Analysis
4948
- name: Perform CodeQL Analysis
50-
uses: github/codeql-action/analyze@v1
49+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9

.github/workflows/default.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
pre-commit:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1515
- name: Set up Python 3.12
16-
uses: actions/setup-python@v5
16+
uses: aactions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
1717
with:
1818
python-version: "3.12"
1919
- uses: pre-commit/action@v3.0.1
@@ -23,17 +23,17 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
26+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13", "3.14"]
2727
include:
2828
- os: windows-latest
2929
python-version: "3.12"
3030
- os: macos-latest
3131
python-version: "3.12"
3232

3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Install dependencies
@@ -49,7 +49,7 @@ jobs:
4949
pytest core hscommon
5050
- name: Upload Artifacts
5151
if: matrix.os == 'ubuntu-latest'
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
5353
with:
5454
name: modules ${{ matrix.python-version }}
5555
path: build/**/*.so
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Merge Artifacts
61-
uses: actions/upload-artifact/merge@v4
61+
uses: actions/upload-artifact/merge@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
6262
with:
6363
name: modules
6464
pattern: modules*

.github/workflows/tx-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
push-source:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1919
- name: Get Transifex Client
2020
run: |
2121
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash -s -- $TX_VERSION

0 commit comments

Comments
 (0)