Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ on:
required: false
default: ""

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
test:
runs-on: ${{ matrix.os }}
Expand All @@ -24,9 +21,9 @@ jobs:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -46,7 +43,7 @@ jobs:
run: pytest tests/unit/ -v --tb=short --cov=src --cov-report=xml

- name: Upload coverage report
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v6
with:
fail_ci_if_error: false

Expand All @@ -56,9 +53,9 @@ jobs:
if: github.ref == 'refs/heads/main'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v4
- uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,14 @@ permissions:
contents: read
security-events: write

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
analyze:
name: Analyze (python)
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ permissions:
contents: read
id-token: write # for OIDC trusted publishing

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
tags:
- "v*.*.*"

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
draft-release:
runs-on: ubuntu-latest
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,12 @@ permissions:
contents: read
actions: read

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
scorecard:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false
fetch-depth: 0
Expand Down
Loading