mirror of
				https://gitea.com/actions/setup-java.git
				synced 2025-11-04 07:47:06 +00:00 
			
		
		
		
	* Build changes * 4.0.0 * node version update * changes * upgrade to v20 * Removing conflicts * Upgrade to v20 in the reusable workflows * Rebased index.js * Removing conflicts * Resolving conflicts * Fomat check * failed checks fix
		
			
				
	
	
		
			20 lines
		
	
	
		
			343 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			343 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Basic validation
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
      - releases/*
 | 
						|
    paths-ignore:
 | 
						|
      - '**.md'
 | 
						|
  pull_request:
 | 
						|
    paths-ignore:
 | 
						|
      - '**.md'
 | 
						|
 | 
						|
jobs:
 | 
						|
  call-basic-validation:
 | 
						|
    name: Basic validation
 | 
						|
    uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main
 | 
						|
    with:
 | 
						|
      node-version: '20.x'
 |