Skip to content

Commit aef1f8c

Browse files
authored
chore(deps-dev): update gh runner (#120)
1 parent 922012e commit aef1f8c

4 files changed

Lines changed: 25 additions & 28 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: CI
22

33
on:
44
pull_request:
5-
branches: [ main ]
5+
branches: [main]
66
push:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
build:
1111
name: Build
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313

1414
steps:
1515
- name: Checkout repository
@@ -41,15 +41,12 @@ jobs:
4141
4242
test:
4343
name: Test
44-
runs-on: ubuntu-20.04
44+
runs-on: ubuntu-24.04
4545
strategy:
4646
fail-fast: false
4747
matrix:
48-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
49-
poetry-version: [ "1.8.2" ]
50-
include:
51-
- python-version: "3.7"
52-
poetry-version: "1.5.1"
48+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
49+
poetry-version: ["1.8.2"]
5350

5451
steps:
5552
- name: Checkout repository

.github/workflows/codeql-analysis.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: "CodeQL"
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
branches: [ main ]
8+
branches: [main]
99
schedule:
10-
- cron: '15 18 * * 5'
10+
- cron: "15 18 * * 5"
1111

1212
jobs:
1313
analyze:
1414
name: Analyze
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
permissions:
1717
actions: read
1818
contents: read
@@ -21,20 +21,20 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
language: [ 'python' ]
24+
language: ["python"]
2525

2626
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v4
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
2929

30-
# Initializes the CodeQL tools for scanning.
31-
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v3
33-
with:
34-
languages: ${{ matrix.language }}
30+
# Initializes the CodeQL tools for scanning.
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v3
33+
with:
34+
languages: ${{ matrix.language }}
3535

36-
- name: Autobuild
37-
uses: github/codeql-action/autobuild@v3
36+
- name: Autobuild
37+
uses: github/codeql-action/autobuild@v3
3838

39-
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v3
39+
- name: Perform CodeQL Analysis
40+
uses: github/codeql-action/analyze@v3

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
check-title:
1313
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
1414
name: Check title
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616

1717
steps:
1818
- uses: naveenk1223/action-pr-title@v1.0.0

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
deploy:
99
name: Deploy to package index
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
env:
1212
PYTHON_VERSION: 3.9
1313
REPOSITORY_USERNAME: ${{ secrets.PYPI_USERNAME }}
@@ -56,7 +56,7 @@ jobs:
5656
conda list
5757
grayskull --version
5858
anaconda --version
59-
59+
6060
count=0
6161
max_retries=5
6262
tag=${{ github.event.release.tag_name }}

0 commit comments

Comments
 (0)