Skip to content

build: Bump actions/checkout from 4.1.2 to 4.1.4 #533

build: Bump actions/checkout from 4.1.2 to 4.1.4

build: Bump actions/checkout from 4.1.2 to 4.1.4 #533

Workflow file for this run

#*******************************************************************************
# Copyright (c) Contributors to the Eclipse Foundation
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0
#*******************************************************************************
name: Examples Build
on:
push:
branches-ignore:
- 'dependabot/**'
paths:
- 'examples/**'
- '.github/**/*example*'
pull_request:
paths:
- 'examples/**'
- '.github/**/*example*'
env:
LC_ALL: en_US.UTF-8
GRADLE_OPTS: >-
-Dorg.gradle.parallel=true
MAVEN_OPTS: >-
-Dhttp.keepAlive=false
-Dmaven.wagon.http.pool=false
-Dmaven.wagon.http.retryHandler.count=3
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
examples:
strategy:
matrix:
java:
- '8'
- '11'
- '17'
os:
- 'ubuntu-latest'
example:
- 'mvn'
- 'gradle'
- 'bndworkspace'
name: example-${{ matrix.example }} JDK${{ matrix.java }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Git Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@85cde3f5a1033b2adc2442631c24b530f1183a1a
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@5896cecc08fd8a1fbdfaf517e29b571164b031f7
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build
id: build
run: |
./.github/scripts/example-${{ matrix.example }}-build.sh