mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-15 02:40:23 +00:00
710e3340ee
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](eef61447b9...11bd71901b
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
25 lines
617 B
YAML
25 lines
617 B
YAML
---
|
|
name: test-retest-action
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
pull_request:
|
|
branches: [devel]
|
|
paths:
|
|
- 'actions/retest/**'
|
|
- '.github/workflows/test-retest-action.yaml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# yamllint disable-line rule:line-length
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- name: Docker build
|
|
# Run cd to avoid loading complete cephcsi directory in docker context
|
|
# while building retest image.
|
|
run: cd actions/retest && docker build -t retest .
|