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
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@v4
- uses: actions/checkout@v5
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@v4
- uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
- uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
4 changes: 2 additions & 2 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@v4
uses: actions/checkout@v5
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@v4
uses: actions/checkout@v5
with:
repository: geopandas/geopandas
path: geopandas
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
- uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
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@v4
- uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
- uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
2 changes: 1 addition & 1 deletion .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@v4
uses: actions/checkout@v5

- name: Setup Micromamba env
uses: mamba-org/setup-micromamba@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_streamlit_folium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
python-version: '3.x'

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

- name: Checkout Streamlit Folium
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: randyzwitch/streamlit-folium
ref: master
Expand Down
Loading