Skip to content

Commit e276f2d

Browse files
committed
Updated Python versions and GitHub actions
1 parent ddcf11a commit e276f2d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/docker-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build-docker-img
22

33
on:
44
push:
5-
branches:
5+
branches:
66
- 'main'
77
schedule:
88
- cron: "30 0 * * *"
@@ -19,23 +19,23 @@ jobs:
1919
contents: read
2020
packages: write
2121
steps:
22-
-
22+
-
2323
name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v6
2525
-
2626
name: Log in to the Container registry
2727
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
2828
with:
2929
registry: ${{ env.REGISTRY }}
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
32-
-
32+
-
3333
name: Extract metadata (tags, labels) for Docker
3434
id: meta
3535
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
3636
with:
3737
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
38-
-
38+
-
3939
name: Build and push Docker image
4040
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
4141
with:

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- name: Install lxml dependencies
1616
run: sudo apt install libxml2-dev libxslt-dev
1717
- name: Setup Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install Cython for lxml installation

0 commit comments

Comments
 (0)