Skip to content

chore(deps): update eclipse-temurin docker tag to v21.0.2_13-jre #411

chore(deps): update eclipse-temurin docker tag to v21.0.2_13-jre

chore(deps): update eclipse-temurin docker tag to v21.0.2_13-jre #411

Workflow file for this run

# This file was generated using Kotlin DSL (.github/workflows/build.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Build'
on:
push:
branches:
- 'main'
pull_request: {}
jobs:
check_yaml_consistency:
name: 'Check YAML consistency'
runs-on: 'ubuntu-latest'
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/build.yaml'' && ''.github/workflows/build.main.kts'''
- id: 'step-2'
name: 'Consistency check'
run: 'git diff --exit-code ''.github/workflows/build.yaml'''
build:
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
- id: 'step-1'
uses: 'gradle/gradle-build-action@v2'
with:
arguments: 'build'
- id: 'step-2'
name: 'Check if the produced files are committed correctly'
run: |-
set -euxo pipefail
unzip_jar() {
for jar in dist/github-actions-typing/lib/*.jar; do
echo "Extracting $jar..."
filename=$(basename -- "$jar")
filename="${filename%.*}"
targetDir="$1/$filename"
echo "Target directory: $targetDir"
mkdir -p "$targetDir"
unzip -qq "$jar" -d "$targetDir"
done
}
unzip_jar "dist-unzipped-before"
rm -rf dist
unzip -qq build/distributions/github-actions-typing.zip -d dist
unzip_jar "dist-unzipped-after"
git diff --no-index --exit-code dist-unzipped-before dist-unzipped-after
validate-types:
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
- id: 'step-1'
uses: 'typesafegithub/github-actions-typing@v1'
workflows_consistency_check:
name: 'Run consistency check on all GitHub workflows'
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
steps:
- id: 'step-0'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Set up Java in proper version'
uses: 'actions/setup-java@v4'
with:
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- id: 'step-2'
run: 'cd .github/workflows'
- id: 'step-3'
name: 'Regenerate all workflow YAMLs'
run: |-
find -name "*.main.kts" -print0 | while read -d $'\0' file
do
echo "Regenerating $file..."
($file)
done
- id: 'step-4'
name: 'Check if some file is different after regeneration'
run: 'git diff --exit-code .'