build(deps): bump tough-cookie from 4.0.0 to 4.1.3 #279
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
name: "run-aqa build with push to master" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
openjdk: # make sure build/ci work properly | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: AQA | |
uses: ./ | |
with: | |
version: '11' | |
jdksource: 'github-hosted' | |
build_list: 'openjdk' | |
target: '_jdk_custom' | |
openjdk_disto: # make sure build/ci work properly with other distros | |
runs-on: ubuntu-latest | |
container: | |
image: ${{ matrix.image }} | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [adoptopenjdk/centos7_build_image, adoptopenjdk/alpine3_build_image] | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: AQA | |
uses: ./ | |
with: | |
version: '8' | |
jdksource: 'github-hosted' | |
build_list: 'openjdk' | |
target: '_jdk_custom' | |
functional: # make sure build/ci work properly | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- uses: AdoptOpenJDK/install-jdk@2f15d3f82051aa50984186fc1184467d0d9f87d0 # v1.1.1 | |
with: | |
version: '11' | |
targets: 'JDK_11' | |
impl: 'openj9' | |
source: 'nightly' | |
- name: AQA | |
uses: ./ | |
with: | |
version: '11' | |
jdksource: 'install-jdk' | |
build_list: 'functional' | |
target: '_floatSanityTests' | |
system: # make sure build/ci work properly | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- uses: AdoptOpenJDK/install-jdk@2f15d3f82051aa50984186fc1184467d0d9f87d0 # v1.1.1 | |
with: | |
version: '11' | |
targets: 'JDK_11' | |
impl: 'openj9' | |
source: 'nightly' | |
- name: AQA | |
uses: ./ | |
with: | |
version: '11' | |
jdksource: 'install-jdk' | |
build_list: 'system' | |
target: '_DaaLoadTest_daa1_5m' |