mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
Bumps the ci group with 1 update: [actions/checkout](https://github.com/actions/checkout).
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8ade135a41...b4ffde65f4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: ci
...
Signed-off-by: dependabot[bot] <support@github.com>
29 lines
558 B
YAML
29 lines
558 B
YAML
name: test-gh-action
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'action/**'
|
|
push:
|
|
paths:
|
|
- 'action/**'
|
|
branches:
|
|
- 'main'
|
|
- 'release/**'
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
actions:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.version }}
|
|
name: action on ${{ matrix.version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Setup flux
|
|
uses: ./action
|