feat: update devcontainer features' aqua_version #299
Workflow file for this run
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
--- | |
name: test | |
on: pull_request | |
permissions: {} | |
jobs: | |
path-filter: | |
# Get changed files to filter jobs | |
outputs: | |
update-aqua-checksums: ${{steps.changes.outputs.update-aqua-checksums}} | |
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}} | |
ghalint: ${{steps.changes.outputs.ghalint}} | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
update-aqua-checksums: | |
- aqua.yaml | |
- aqua/*.yaml | |
- aqua-checksums.json | |
- .github/workflows/test.yaml | |
renovate-config-validator: | |
- renovate.json5 | |
validate: | |
- "*.json" | |
ghalint: | |
- .github/workflows/*.yaml | |
- aqua/ghalint.yaml | |
update-aqua-checksums: | |
# Update aqua-checksums.json and push a commit | |
needs: path-filter | |
if: needs.path-filter.outputs.update-aqua-checksums == 'true' | |
uses: aquaproj/update-checksum-workflow/.github/workflows/update-checksum.yaml@f367004e7f17e99d30297cd9e89afad30ee1f251 # v1.0.0 | |
permissions: | |
contents: read | |
with: | |
aqua_version: v2.27.3 | |
prune: true | |
secrets: | |
gh_app_id: ${{secrets.APP_ID}} | |
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}} | |
renovate-config-validator: | |
# Validate Renovate Configuration by renovate-config-validator. | |
uses: suzuki-shunsuke/renovate-config-validator-workflow/.github/workflows/validate.yaml@4a378742d05b4e67aae34039d7c779ac913cd79d # v0.2.3 | |
needs: path-filter | |
if: needs.path-filter.outputs.renovate-config-validator == 'true' | |
permissions: | |
contents: read | |
enable-automerge: | |
# Enable automerge to merge pull requests from Renovate automatically. | |
runs-on: ubuntu-latest | |
needs: | |
- status-check | |
permissions: | |
contents: write # For enable automerge | |
pull-requests: write # For enable automerge | |
if: | | |
! failure() && ! cancelled() && github.event.pull_request.user.login == 'renovate[bot]' && contains(github.event.pull_request.body, ' **Automerge**: Enabled.') | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{secrets.APP_ID}} | |
private_key: ${{secrets.APP_PRIVATE_KEY}} | |
permissions: >- | |
{ | |
"contents": "write", | |
"pull-requests": "write" | |
} | |
repositories: >- | |
[ | |
"${{github.event.repository.name}}" | |
] | |
- run: gh -R "$GITHUB_REPOSITORY" pr merge --squash --auto --delete-branch "$PR_NUMBER" | |
env: | |
GITHUB_TOKEN: ${{steps.generate_token.outputs.token}} # Use GitHub App to trigger GitHub Actions Workflow by merge commit. | |
PR_NUMBER: ${{github.event.pull_request.number}} | |
validate-presets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- uses: aquaproj/aqua-installer@4551ec64e21bf0f557c2525135ff0bd2cba40ec7 # v3.0.0 | |
with: | |
aqua_version: v2.27.3 | |
- run: ci-info run | sed "s/^export //" >> "$GITHUB_ENV" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- run: | | |
grep -E "^[^/]+\.json$" "$CI_INFO_TEMP_DIR/pr_all_filenames.txt" | grep -v aqua-checksums.json | while read -r file; do | |
if [ -f "$file" ]; then | |
RENOVATE_CONFIG_FILE="$file" npx --package renovate -c renovate-config-validator | |
fi | |
done | |
status-check: | |
# This job is used for main branch's branch protection rule's status check. | |
# If all dependent jobs succeed or are skipped this job succeeds. | |
runs-on: ubuntu-latest | |
needs: | |
- update-aqua-checksums | |
- validate-presets | |
- renovate-config-validator | |
- ghalint | |
- jsonnet | |
permissions: {} | |
if: failure() | |
steps: | |
- run: exit 1 | |
ghalint: | |
# Validate GitHub Actions Workflows by ghalint. | |
needs: path-filter | |
if: needs.path-filter.outputs.ghalint == 'true' | |
runs-on: ubuntu-latest | |
permissions: {} | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- uses: aquaproj/aqua-installer@4551ec64e21bf0f557c2525135ff0bd2cba40ec7 # v3.0.0 | |
with: | |
aqua_version: v2.27.3 | |
env: | |
AQUA_GITHUB_TOKEN: ${{github.token}} | |
- run: ghalint run | |
env: | |
GHALINT_LOG_COLOR: always | |
jsonnet: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- uses: aquaproj/aqua-installer@4551ec64e21bf0f557c2525135ff0bd2cba40ec7 # v3.0.0 | |
with: | |
aqua_version: v2.27.3 | |
- run: jsonnet --version | |
- run: | | |
bash scripts/generate.sh | |
git add . | |
if ! git diff --cached --exit-code; then | |
echo "Please run 'bash scripts/generate.sh'" >&2 | |
echo "::error title=Please run 'bash scripts/generate.sh'::" | |
exit 1 | |
fi |