Merge pull request #102 from kubernetes-sigs/dependabot/github_action… #225
This file contains 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
# Copyright 2023 The Kubernetes Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: test-bom-action | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
outputs: | |
bom: ${{ steps.filter.outputs.bom }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: filter | |
with: | |
filters: | | |
bom: | |
- 'setup-bom/**' | |
- '.github/workflows/test-setup-bom.yml' | |
test_bom_action: | |
needs: changes | |
if: ${{ needs.changes.outputs.bom == 'true' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install bom and test presence in path | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install bom | |
uses: ./setup-bom | |
- name: Check install! | |
run: bom version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
shell: bash | |
test_bom_action_custom_dir_root: | |
runs-on: ${{ matrix.os }} | |
needs: changes | |
if: ${{ needs.changes.outputs.bom == 'true' }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
permissions: {} | |
name: Install Custom bom and test presence in path with custom root dir | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install bom | |
uses: ./setup-bom | |
with: | |
install-dir: /usr/bin | |
use-sudo: true | |
- name: Check install! | |
run: bom version | |
- name: Check install dir! | |
run: | | |
[[ $(dirname "$(which bom)") == /usr/bin ]] | |
shell: bash | |
- name: Check root directory | |
run: | | |
[[ -z $(git diff --stat) ]] | |
shell: bash | |
test_bom_action_custom_dir: | |
runs-on: ${{ matrix.os }} | |
needs: changes | |
if: ${{ needs.changes.outputs.bom == 'true' }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Custom path bom and test presence in path | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install bom | |
uses: ./setup-bom | |
with: | |
install-dir: "$HOME/.bomtest" | |
- name: Check install! | |
run: bom version | |
- name: Check install dir! | |
run: | | |
[[ $(dirname "$(which bom)") == "$HOME/.bomtest" ]] | |
shell: bash | |
- name: Check root directory | |
run: | | |
[[ -z $(git diff --stat) ]] | |
shell: bash | |
test_bom_action_wrong: | |
runs-on: ${{ matrix.os }} | |
needs: changes | |
if: ${{ needs.changes.outputs.bom == 'true' }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Try to install a wrong bom | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install bom | |
uses: ./setup-bom | |
with: | |
bom-release: 'honk' | |
continue-on-error: true |