From fd7d2f5b46e236d039bc2e4633bfd0adbf44fa62 Mon Sep 17 00:00:00 2001 From: alaviss Date: Tue, 18 Jun 2024 15:56:10 -0500 Subject: [PATCH] actions/setup-mingw: bump release-downloader to 1.10 (#1350) ## Summary No functional changes other than a bump to NodeJS 20 since 16 has been deprecated by GitHub. ## Details * GitHub has deprecated version 16 since Oct 2023: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/actions/setup-mingw/action.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-mingw/action.yml b/.github/actions/setup-mingw/action.yml index 19c9baba6c6..3298a6e7ce0 100644 --- a/.github/actions/setup-mingw/action.yml +++ b/.github/actions/setup-mingw/action.yml @@ -18,7 +18,7 @@ runs: - name: Download from niXman/mingw-builds-binaries id: download - uses: robinraju/release-downloader@v1.8 + uses: robinraju/release-downloader@v1.10 with: repository: niXman/mingw-builds-binaries tag: ${{ inputs.mingw-version }} @@ -31,8 +31,7 @@ runs: Join-Path $env:RUNNER_TEMP "mingw64" "bin" | Out-File -Append $env:GITHUB_PATH shell: pwsh env: - MINGW_ARCHIVE: - ${{ fromJson(steps.download.outputs.downloaded_files)[0] }} + MINGW_ARCHIVE: ${{ fromJson(steps.download.outputs.downloaded_files)[0] }} working-directory: ${{ runner.temp }} - name: Print GCC version