chore(deps): bump undici from 6.24.1 to 6.27.0 #2668
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| on: | |
| schedule: | |
| - cron: '0 10 * * *' | |
| push: | |
| branches: | |
| - 'master' | |
| - 'releases/v*' | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # TODO: uncomment when arm64 binaries are available: https://github.com/magefile/mage/issues/481 | |
| # - macos-26 | |
| - macos-26-intel | |
| - windows-latest | |
| version: | |
| - latest | |
| - v1.8.0 | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - | |
| name: Set up Go | |
| uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 | |
| with: | |
| go-version: "1.20" | |
| cache-dependency-path: test/go.sum | |
| - | |
| name: Mage | |
| uses: ./ | |
| with: | |
| version: ${{ matrix.version }} | |
| args: build | |
| workdir: tests/fixtures/app | |
| cache-binary: false | |
| install-only: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| # TODO: uncomment when arm64 binaries are available: https://github.com/magefile/mage/issues/481 | |
| # - macos-26 | |
| - macos-26-intel | |
| - windows-latest | |
| version: | |
| - latest | |
| - v1.8.0 | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - | |
| name: Install Mage | |
| uses: ./ | |
| with: | |
| version: ${{ matrix.version }} | |
| install-only: true | |
| cache-binary: false | |
| - | |
| name: Show Mage version | |
| run: mage --version | |
| cache-binary: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - | |
| name: Install Mage | |
| uses: ./ | |
| with: | |
| version: v1.14.0 | |
| install-only: true | |
| cache-binary: true | |
| - | |
| name: Show Mage version | |
| run: mage --version |