Skip to content

chore(deps): Bump actions/checkout from 3.6.0 to 4.0.0 #580

chore(deps): Bump actions/checkout from 3.6.0 to 4.0.0

chore(deps): Bump actions/checkout from 3.6.0 to 4.0.0 #580

Workflow file for this run

#
# Copyright (c) 2019 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at:
#
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#
name: License
on:
push:
branches:
- master
pull_request:
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
license-check:
name: License Check
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.adoptopenjdk.net:443
github.com:443
objects.githubusercontent.com:443
repo.maven.apache.org:443
- name: Checkout
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
- name: Setup Java 11
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2
with:
java-version: '11'
distribution: 'adopt'
- name: Check License Headers
run: mvn -N license:check