From 6241addb1e2fa6efc5b90400a2f4df9db6532cd0 Mon Sep 17 00:00:00 2001 From: gretmn102 Date: Tue, 12 Aug 2025 13:33:00 +0300 Subject: [PATCH 1/2] fix(ci): failed because it uses a deprecated version of `actions/upload-artifact: v3` See: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fe4483d..1e885ca 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -92,7 +92,7 @@ jobs: strip artifact/instead-cli/instead-cli - name: Publish Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: instead-cli path: artifact From 039bc746aed8f151f4059b204fb13c0f967831ff Mon Sep 17 00:00:00 2001 From: gretmn102 Date: Tue, 12 Aug 2025 13:47:10 +0300 Subject: [PATCH 2/2] fix(ci): 404 Not Found in https://luajit.org/download/LuaJIT-2.0.5.tar.gz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > LuaJIT uses rolling releases. There are no release tarballs available for download. > > Please do not use obsolete versions from older tarballs or zip files. Please remove any outdated links to these downloads — these links will cease to work soon. > > https://luajit.org/download.html --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1e885ca..56cc1db 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -41,9 +41,9 @@ jobs: run: | mkdir libs winlibs - wget https://luajit.org/download/LuaJIT-${{ env.luajit_ver }}.tar.gz - tar xf LuaJIT-${{ env.luajit_ver }}.tar.gz - cd LuaJIT-${{ env.luajit_ver }} + git clone https://luajit.org/git/luajit.git + cd luajit + git switch --detach tags/v${{ env.luajit_ver }} make CROSS=i686-w64-mingw32- HOST_CC="gcc -m32" TARGET_SYS=Windows BUILDMODE=static for f in lua.h luaconf.h lualib.h lauxlib.h; do cp src/$f ../winlibs/