diff --git a/.github/actions/test_macvim_artifacts/action.yml b/.github/actions/test_macvim_artifacts/action.yml index a0ec557045..e4c150a847 100644 --- a/.github/actions/test_macvim_artifacts/action.yml +++ b/.github/actions/test_macvim_artifacts/action.yml @@ -13,7 +13,7 @@ runs: using: "composite" steps: - name: Upload failed tests - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: # Name of the artifact to upload. name: ${{ format('GH-{0}-{1}-{2}-{3}-{4}-failed-macvim-tests', diff --git a/.github/actions/universal-package/action.yml b/.github/actions/universal-package/action.yml index 0ea6df8532..24d6f885d0 100644 --- a/.github/actions/universal-package/action.yml +++ b/.github/actions/universal-package/action.yml @@ -76,7 +76,7 @@ runs: - name: Restore keg cache id: cache-keg-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ${{ steps.setup-formula.outputs.brew_prefix }}/Cellar/${{ inputs.formula }} key: ${{ inputs.formula }}-homebrew-cache-custom-unified-prefix${{ steps.setup-formula.outputs.brew_prefix }}-xcode${{ steps.setup-formula.outputs.xcode_version }}-${{ hashFiles(format('{0}.rb', inputs.formula)) }} @@ -120,7 +120,7 @@ runs: - name: Save keg cache id: cache-keg-save - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 # We always save the generated artifact even if the whole run # fails due to other issues. This helps debugging build # failure issues faster if the cache doesn't already exist as diff --git a/.github/workflows/macvim-buildtest.yaml b/.github/workflows/macvim-buildtest.yaml index 0a421be5ed..d45cd251dc 100644 --- a/.github/workflows/macvim-buildtest.yaml +++ b/.github/workflows/macvim-buildtest.yaml @@ -435,7 +435,7 @@ jobs: # and add pictures to make them look nice. - name: Upload MacVim image if: inputs.publish && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master') - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: MacVim${{ inputs.publish_postfix }}.dmg path: src/MacVim/build/Release/MacVim${{ inputs.publish_postfix }}.dmg