diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8433584..6945ffa 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -6,7 +6,7 @@ jobs: clang-format: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 needs: clang-format steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: build lib run: | docker build . -t tmp diff --git a/.github/workflows/push_image.yml b/.github/workflows/push_image.yml index db4d5e9..939088d 100644 --- a/.github/workflows/push_image.yml +++ b/.github/workflows/push_image.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Extract Docker metadata id: meta uses: docker/metadata-action@v4 diff --git a/Dockerfile b/Dockerfile index 6753d66..df1df50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/wiiu-env/devkitppc:20240505 +FROM ghcr.io/wiiu-env/devkitppc:20260204 WORKDIR tmp_build COPY . . diff --git a/Dockerfile.buildlocal b/Dockerfile.buildlocal index 41b52e6..94f5d99 100644 --- a/Dockerfile.buildlocal +++ b/Dockerfile.buildlocal @@ -1,3 +1,3 @@ -FROM ghcr.io/wiiu-env/devkitppc:20240505 +FROM ghcr.io/wiiu-env/devkitppc:20260204 WORKDIR project \ No newline at end of file diff --git a/README.md b/README.md index cae70fb..06bd0f1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This library loads CURL from an Aroma Module instead of statically linking it to - Requires the [CURLWrapperModule](https://github.com/wiiu-env/CURLWrapperModule) to be running via [WUMSLoader](https://github.com/wiiu-env/WUMSLoader). - Requires [wut](https://github.com/devkitPro/wut) for building. -- Use with curl 7.84.0 headers, other versions might not be compatible. +- Use with curl 8.7.1 headers, other versions might not be compatible. - See important changes in the Usage section. Install via `make install`.