From fb063fcb799f762764a4dd61af1c288bab266aeb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:31:10 +0100 Subject: [PATCH 1/7] chore(deps): update actions/checkout action to v4 (#68) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/acr_docker_image.yml | 2 +- .github/workflows/python-linting.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/acr_docker_image.yml b/.github/workflows/acr_docker_image.yml index 0447dd5..c84ad81 100644 --- a/.github/workflows/acr_docker_image.yml +++ b/.github/workflows/acr_docker_image.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Log into ACR uses: docker/login-action@v2 diff --git a/.github/workflows/python-linting.yml b/.github/workflows/python-linting.yml index 465726b..f529207 100644 --- a/.github/workflows/python-linting.yml +++ b/.github/workflows/python-linting.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 uses: actions/setup-python@v3 with: From bd065b8942689b55cdddae048ee4b5db40df3e20 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 20:34:41 +0100 Subject: [PATCH 2/7] chore(deps): update actions/setup-python action to v5 (#69) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/python-linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-linting.yml b/.github/workflows/python-linting.yml index f529207..8d3f611 100644 --- a/.github/workflows/python-linting.yml +++ b/.github/workflows/python-linting.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: "3.9" - name: Install dependencies From 41bd0e3c70ac78b09885b9204d5549e1c16d935d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:25:08 +0100 Subject: [PATCH 3/7] chore(deps): update docker/build-push-action action to v6 (#71) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/acr_docker_image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/acr_docker_image.yml b/.github/workflows/acr_docker_image.yml index c84ad81..43eebb8 100644 --- a/.github/workflows/acr_docker_image.yml +++ b/.github/workflows/acr_docker_image.yml @@ -29,7 +29,7 @@ jobs: images: ${{ secrets.ACR_ENDPOINT }}/${{ env.IMAGE_NAME }} - name: Build and push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')}} From 5c4ae85f787adb975fb19e9489d3e5ff22830132 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:25:30 +0100 Subject: [PATCH 4/7] chore(deps): update docker/login-action action to v3 (#72) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/acr_docker_image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/acr_docker_image.yml b/.github/workflows/acr_docker_image.yml index 43eebb8..e94c840 100644 --- a/.github/workflows/acr_docker_image.yml +++ b/.github/workflows/acr_docker_image.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Log into ACR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ secrets.ACR_ENDPOINT }} username: ${{ secrets.ACR_USERNAME }} From 625cd0e1f8404935b25d622f5fd7c5c4d9eab452 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:29:29 +0100 Subject: [PATCH 5/7] chore(deps): update docker/metadata-action action to v5 (#73) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/acr_docker_image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/acr_docker_image.yml b/.github/workflows/acr_docker_image.yml index e94c840..1e2faea 100644 --- a/.github/workflows/acr_docker_image.yml +++ b/.github/workflows/acr_docker_image.yml @@ -24,7 +24,7 @@ jobs: - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ secrets.ACR_ENDPOINT }}/${{ env.IMAGE_NAME }} From fc46905ad76540c02ce7b21092d5cef3f6bdc313 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:29:54 +0100 Subject: [PATCH 6/7] chore(deps): update peter-evans/repository-dispatch action to v3 (#74) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/acr_docker_image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/acr_docker_image.yml b/.github/workflows/acr_docker_image.yml index 1e2faea..2882952 100644 --- a/.github/workflows/acr_docker_image.yml +++ b/.github/workflows/acr_docker_image.yml @@ -39,7 +39,7 @@ jobs: # This job is going to trigger an event named `bump-pipeline-version` # on undp-data/geohub repo in order to make a PR to bump version of data pipeline to AKS - name: dispatch event to GeoHub repo to create release PR - uses: peter-evans/repository-dispatch@v1 + uses: peter-evans/repository-dispatch@v3 if: startsWith(github.ref, 'refs/tags/v') with: repository: undp-data/geohub From 1eadd248ea9f2962a018b8ca8e028fde35914da0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 08:34:26 +0100 Subject: [PATCH 7/7] chore(deps): update ubuntu docker tag to v24 (#75) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7bbd273..00b716e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Build felt/tippecanoe # Dockerfile from https://github.com/felt/tippecanoe/blob/main/Dockerfile # add "--platform=linux/x86_64" for M1 Mac -FROM ubuntu:22.04 AS tippecanoe-builder +FROM ubuntu:24.04 AS tippecanoe-builder RUN apt-get update \ && apt-get -y install build-essential libsqlite3-dev zlib1g-dev git