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
4 changes: 2 additions & 2 deletions .github/workflows/bnf-jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: ['20', '22', '24']

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

- name: install antlr4
run: pip install antlr4-tools
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
id-token: write

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bnf-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: ['3.11', '3.12', '3.13', '3.14']

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

- name: install antlr4
run: pip install antlr4-tools
Expand All @@ -45,7 +45,7 @@ jobs:
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags')"

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: dependencies
run: sudo apt-get update && sudo apt-get install -y libgtest-dev
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_LATEST_VERSION }}
cache: 'npm'

- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: ${{ env.EM_CACHE_FOLDER }}
key: docs-em-cache-${{ runner.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/egg-jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: ['20', '22', '24']

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

- uses: actions/setup-node@v6
with:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
id-token: write

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/egg-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ['3.11', '3.12', '3.13', '3.14']

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

- uses: astral-sh/setup-uv@v7
with:
Expand All @@ -41,7 +41,7 @@ jobs:
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags')"

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: dependencies
run: sudo apt-get update && sudo apt-get install -y libgtest-dev
Expand All @@ -40,7 +40,7 @@ jobs:
python-version: ['3.11', '3.12', '3.13', '3.14']

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

- uses: astral-sh/setup-uv@v7
with:
Expand All @@ -62,14 +62,14 @@ jobs:
node-version: ['20', '22', '24']

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

- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: ${{ env.EM_CACHE_FOLDER }}
key: example-em-cache-${{ runner.os }}-${{ matrix.node-version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
node-version: ['20', '22', '24']

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

- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: ${{ env.EM_CACHE_FOLDER }}
key: jest-em-cache-${{ runner.os }}-${{ matrix.node-version }}
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
id-token: write

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

- name: recovery tag information
run: git fetch --tags --force
Expand All @@ -65,7 +65,7 @@ jobs:
node-version: ${{ env.NODE_LATEST_VERSION }}
cache: 'npm'

- uses: actions/cache@v5
- uses: actions/cache@v6
with:
path: ${{ env.EM_CACHE_FOLDER }}
key: jest-em-cache-${{ runner.os }}-${{ env.NODE_LATEST_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
runs-on: ubuntu-latest

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

- uses: pre-commit/action@v3.0.1
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ['3.11', '3.12', '3.13', '3.14']

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

- uses: astral-sh/setup-uv@v7
with:
Expand All @@ -44,7 +44,7 @@ jobs:
os: [windows-latest, ubuntu-latest, macos-latest]

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags')"

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

- name: recovery tag information
run: git fetch --tags --force
Expand Down
Loading