a917fd15b2
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/f43a0e5ff2bd294095638e18286ca9a3d1956744...b4ffde65f46336ab88eb53be808477a3936bae11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: test-chart-releaser
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test_chart_releaser_install_action:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: none
|
|
checks: none
|
|
contents: none
|
|
deployments: none
|
|
issues: none
|
|
packages: none
|
|
pull-requests: none
|
|
repository-projects: none
|
|
security-events: none
|
|
statuses: none
|
|
name: Install chart-releaser and test presence in path
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Install chart-releaser
|
|
uses: ./
|
|
with:
|
|
install_only: true
|
|
env:
|
|
CR_TOKEN: "FAKE_SECRETS"
|
|
- name: Check install!
|
|
run: cr version
|
|
- name: Check root directory
|
|
run: |
|
|
if ! git diff --stat --exit-code; then
|
|
echo 'should be clean'
|
|
exit 1
|
|
fi
|
|
|
|
test_chart_releaser_action:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: none
|
|
checks: none
|
|
contents: none
|
|
deployments: none
|
|
issues: none
|
|
packages: none
|
|
pull-requests: none
|
|
repository-projects: none
|
|
security-events: none
|
|
statuses: none
|
|
name: Install chart-releaser and run it
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Install chart-releaser
|
|
uses: ./
|
|
env:
|
|
CR_TOKEN: "FAKE_SECRETS"
|
|
- name: Check root directory
|
|
run: |
|
|
if ! git diff --stat --exit-code; then
|
|
echo 'should be clean'
|
|
exit 1
|
|
fi
|