Skip to content

Commit

Permalink
Bump github actions versions to avoid test failures.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 608779295
  • Loading branch information
romanngg committed Feb 21, 2024
1 parent e84d2ab commit 435be85
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Expand Up @@ -29,13 +29,13 @@ jobs:
steps:

- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -54,7 +54,7 @@ jobs:
JAX_ENABLE_X64=${{ matrix.JAX_ENABLE_X64 }} PYTHONHASHSEED=0 pytest -n auto --cov=neural_tangents --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.0.1
with:
file: ./coverage.xml

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/macos.yml
Expand Up @@ -29,13 +29,13 @@ jobs:
steps:

- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -54,7 +54,7 @@ jobs:
JAX_ENABLE_X64=${{ matrix.JAX_ENABLE_X64 }} PYTHONHASHSEED=0 pytest -n auto --cov=neural_tangents --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.0.1
with:
file: ./coverage.xml

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pytype.yml
Expand Up @@ -24,13 +24,13 @@ jobs:
steps:

- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Set up Python 3.10
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.0.0
with:
python-version: '3.10'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sketching.yml
Expand Up @@ -28,13 +28,13 @@ jobs:
steps:

- name: Cancel previous
uses: styfle/cancel-workflow-action@0.11.0
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -53,7 +53,7 @@ jobs:
JAX_ENABLE_X64=${{ matrix.JAX_ENABLE_X64 }} PYTHONHASHSEED=0 pytest experimental/tests/ -n auto --cov=experimental/ --cov-report=xml --cov-report=term
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v4.0.1
with:
file: ./coverage.xml

Expand Down

0 comments on commit 435be85

Please sign in to comment.