From e8725777046ca5c0b3039fda11758f27a9e129ae Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 10 Jun 2024 17:45:55 +0900 Subject: [PATCH 1/3] Update c-ares download URLs --- Dockerfile.android | 2 +- Dockerfile.mingw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.android b/Dockerfile.android index 342f3057..8f45be66 100644 --- a/Dockerfile.android +++ b/Dockerfile.android @@ -58,7 +58,7 @@ ENV ZLIB_URI=https://github.com/madler/zlib/releases/download/v1.3.1/$ZLIB_ARCHI ENV CARES_VERSION=1.21.0 ENV CARES_ARCHIVE=c-ares-$CARES_VERSION.tar.gz -ENV CARES_URI=https://c-ares.haxx.se/download/$CARES_ARCHIVE +ENV CARES_URI=https://github.com/c-ares/c-ares/releases/download/cares-1_21_0/$CARES_ARCHIVE ENV LIBSSH2_VERSION=1.11.0 ENV LIBSSH2_ARCHIVE=libssh2-$LIBSSH2_VERSION.tar.bz2 diff --git a/Dockerfile.mingw b/Dockerfile.mingw index 5f2d0e64..c140b306 100644 --- a/Dockerfile.mingw +++ b/Dockerfile.mingw @@ -33,7 +33,7 @@ RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.3.0.tar.xz && \ curl -L -O https://github.com/libexpat/libexpat/releases/download/R_2_5_0/expat-2.5.0.tar.bz2 && \ curl -L -O https://www.sqlite.org/2023/sqlite-autoconf-3430100.tar.gz && \ curl -L -O https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz && \ - curl -L -O https://c-ares.org/download/c-ares-1.19.1.tar.gz && \ + curl -L -O https://github.com/c-ares/c-ares/releases/download/cares-1_19_1/c-ares-1.19.1.tar.gz && \ curl -L -O https://libssh2.org/download/libssh2-1.11.0.tar.bz2 RUN tar xf gmp-6.3.0.tar.xz && \ From 468b8db61b0f9a66cc31bf672407f078ae998ef3 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 10 Jun 2024 17:53:53 +0900 Subject: [PATCH 2/3] Let dependabot update GitHub Actions --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..8c139c7b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From a860673c26c236f26c08d72313474b8cee09cd31 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:13:52 +0000 Subject: [PATCH 3/3] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51703768..2966f31d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Linux setup if: runner.os == 'Linux' run: |