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
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
packages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/save_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Folium
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand All @@ -36,7 +36,7 @@ jobs:

- name: Save versions.txt
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: versions.txt
path: /tmp/versions.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
shell: bash -l {0}

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

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-code-${{ matrix.os }}-${{ matrix.python-version }}
path: .coverage*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_geopandas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout Folium
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# needed to get the correct version number for Folium
fetch-depth: 0
Expand All @@ -32,7 +32,7 @@ jobs:
--file folium/requirements.txt

- name: Checkout Geopandas
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: geopandas/geopandas
path: geopandas
Expand All @@ -54,7 +54,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-geopandas
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_latest_branca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: bash -l {0}

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

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-branca
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: bash -l {0}

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

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_selenium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
shell: bash -l {0}

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

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-selenium-${{ matrix.python-version }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout Folium
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Upload screenshots
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: screenshots
path: |
Expand All @@ -56,7 +56,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-snapshots
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_streamlit_folium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
python-version: '3.13'

- name: Checkout Folium
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Checkout Streamlit Folium
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: randyzwitch/streamlit-folium
ref: master
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-test-streamlit-folium
path: |
Expand Down
Loading