Skip to content
Open
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
4 changes: 3 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Benchmark

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
types: [ labeled ]
Expand All @@ -14,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Code Style Check

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
paths:
Expand All @@ -14,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: make venv
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/content.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Update Generated Content
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
push:
branches:
Expand All @@ -8,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: make content
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Coverage

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
paths:
Expand All @@ -13,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: make install
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs-check-markdown.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Check Markdown Style

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
paths:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Deploy Documentation

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
push:
branches:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-brew.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release on Homebrew

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
workflow_dispatch:
inputs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-choco.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release on Chocolatey

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
workflow_dispatch:
inputs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-linux-standalone.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release as Standalone Linux Package

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
workflow_dispatch:
inputs:
Expand All @@ -24,7 +26,7 @@ jobs:
with:
ref: ${{ github.event.inputs.branch }}

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

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release on PyPI

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
workflow_dispatch:
inputs:
Expand All @@ -17,7 +19,7 @@ jobs:
with:
ref: ${{ github.event.inputs.branch }}

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

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-snap.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Release on Snap

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
workflow_dispatch:
inputs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Mark stale pull requests

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on: workflow_dispatch

permissions:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-package-linux-snap.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Test Snap Package (Linux)


env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
paths:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-package-mac-brew.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Test Brew Package (MacOS)

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
pull_request:
paths:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
on:
push:
branches:
Expand Down Expand Up @@ -35,8 +37,8 @@ jobs:
pyopenssl: [0, 1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Windows setup
Expand Down
Loading