mirror of
https://github.com/goreleaser/goreleaser-action.git
synced 2026-07-02 11:09:33 +00:00
Some checks failed
ci / ci (goreleaser, macos-latest, latest) (push) Has been cancelled
ci / ci (goreleaser, macos-latest, ~> 2.13) (push) Has been cancelled
ci / ci (goreleaser, ubuntu-latest, latest) (push) Has been cancelled
ci / ci (goreleaser, ubuntu-latest, ~> 2.13) (push) Has been cancelled
ci / ci (goreleaser, windows-latest, latest) (push) Has been cancelled
ci / ci (goreleaser, windows-latest, ~> 2.13) (push) Has been cancelled
ci / ci (goreleaser-pro, macos-latest, latest) (push) Has been cancelled
ci / ci (goreleaser-pro, macos-latest, ~> 2.13) (push) Has been cancelled
ci / ci (goreleaser-pro, ubuntu-latest, latest) (push) Has been cancelled
ci / ci (goreleaser-pro, ubuntu-latest, ~> 2.13) (push) Has been cancelled
ci / ci (goreleaser-pro, windows-latest, latest) (push) Has been cancelled
ci / ci (goreleaser-pro, windows-latest, ~> 2.13) (push) Has been cancelled
ci / install-only (false, goreleaser, latest) (push) Has been cancelled
ci / install-only (false, goreleaser, ~> 2.13) (push) Has been cancelled
ci / install-only (false, goreleaser-pro, latest) (push) Has been cancelled
ci / install-only (false, goreleaser-pro, ~> 2.13) (push) Has been cancelled
ci / install-only (true, goreleaser, latest) (push) Has been cancelled
ci / install-only (true, goreleaser, ~> 2.13) (push) Has been cancelled
ci / install-only (true, goreleaser-pro, latest) (push) Has been cancelled
ci / install-only (true, goreleaser-pro, ~> 2.13) (push) Has been cancelled
ci / signing (macos-latest) (push) Has been cancelled
ci / signing (ubuntu-latest) (push) Has been cancelled
ci / signing (windows-latest) (push) Has been cancelled
ci / upload-artifact (push) Has been cancelled
ci / dist (push) Has been cancelled
ci / nightly (goreleaser, macos-latest) (push) Has been cancelled
ci / nightly (goreleaser, ubuntu-latest) (push) Has been cancelled
ci / nightly (goreleaser, windows-latest) (push) Has been cancelled
ci / nightly (goreleaser-pro, macos-latest) (push) Has been cancelled
ci / nightly (goreleaser-pro, ubuntu-latest) (push) Has been cancelled
ci / nightly (goreleaser-pro, windows-latest) (push) Has been cancelled
test / test (push) Has been cancelled
validate / lint (push) Has been cancelled
validate / build (push) Has been cancelled
validate / vendor (push) Has been cancelled
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6.0.2 to 6.0.3 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](de0fac2e45...df4cb1c069) Updates `sigstore/cosign-installer` from 4.1.1 to 4.1.2 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](cad07c2e89...6f9f177880) Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](57e3a136b7...e79a6962e0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: sigstore/cosign-installer dependency-version: 4.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: test
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'releases/v*'
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version-file: '.node-version'
|
|
cache: npm
|
|
- name: Install cosign
|
|
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Test
|
|
run: npm test
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
|
|
with:
|
|
files: ./coverage/clover.xml
|