Bump commons-io:commons-io from 2.15.1 to 2.16.0 #1358
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Build | |
on: | |
workflow_dispatch: | |
inputs: | |
git-ref: | |
description: Git Ref (Optional) | |
required: false | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# schedule: | |
# - cron: '0 9 * * *' | |
jobs: | |
build: | |
runs-on: Ubuntu-20.04 | |
env: | |
AWS_REGION: eu-central-1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Start localstack | |
run: ./gradlew startLocalStack | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Stop localstack | |
run: ./gradlew stopLocalStack |