Skip to content

Commit c5b4c60

Browse files
committed
main.yaml: use actions/setup-python@v6 to run Python 3.14
Also update actions/checkout to @v5
1 parent 414f35f commit c5b4c60

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
# This is a basic workflow to help you get started with Actions
2-
31
name: CI
4-
5-
# Controls when the action will run.
62
on:
7-
# Triggers the workflow on push or pull request events but only for the master branch
83
push:
94
branches: [ master ]
105
pull_request:
@@ -13,19 +8,16 @@ on:
138
# Allows you to run this workflow manually from the Actions tab
149
workflow_dispatch:
1510

16-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1711
jobs:
18-
# This workflow contains a single job called "build"
1912
build:
20-
# The type of runner that the job will run on
2113
runs-on: ubuntu-latest
2214

23-
# Steps represent a sequence of tasks that will be executed as part of the job
2415
steps:
25-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
17+
- uses: actions/setup-python@v6
18+
with:
19+
python-version: '3.14'
2720

28-
# Runs a set of commands using the runners shell
2921
- name: Update index.html and push to repo
3022
run: |
3123
git config --local user.email "$(git log --format='%ae' HEAD^!)"

0 commit comments

Comments
 (0)