Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefpiatek committed Oct 21, 2024
2 parents 1becae7 + 56c1ee3 commit 62e322c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: "Check licenses"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install reuse
run: |
python -m venv ~/venv
Expand All @@ -25,9 +25,9 @@ jobs:
name: "Run code tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Poetry
Expand All @@ -41,9 +41,9 @@ jobs:
runs-on: ubuntu-latest
needs: [licenses, test]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Poetry
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Generate the GeoJSON
run: poetry run generate
- name: Archive GeoJSON
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: groups.json
path: groups.json
Expand All @@ -63,9 +63,9 @@ jobs:
needs: [generate]
if: ${{ github.ref == 'refs/heads/master' && github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Download all workflow run artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: groups.json
- name: Move everything into place
Expand Down

0 comments on commit 62e322c

Please sign in to comment.