From ea386d7dc2f31c386bdec8c73f51f68305f40ea0 Mon Sep 17 00:00:00 2001 From: laqieer Date: Tue, 3 Sep 2024 20:06:40 +0800 Subject: [PATCH] Fix `Error: EMFILE: too many open files` when upload artifacts Pin to `v4.3.5` as a temporary workaround https://github.com/actions/upload-artifact/issues/485 ``` Error: EMFILE: too many open files, open 'D:\a\FEBuilderGBA\FEBuilderGBA\FEBuilderGBA\bin\Debug\config\patch2\FE8J\skill_2018_06_01\0x0ED4.txt' ``` https://github.com/laqieer/FEBuilderGBA/actions/runs/10682416285/job/29608206679#step:6:26 --- .github/workflows/msbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 113bf95a..970498eb 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -44,7 +44,7 @@ jobs: - name: Store build timestamp run: echo "build_time=$(date +'%Y%m%d.%H')" >> "$GITHUB_ENV" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v4.3.5 with: name: ${{ github.event.repository.name }}_${{ env.build_time }} path: |