Skip to content

Bump actions/upload-artifact from 3.pre.node20 to 4.3.3 #810

Bump actions/upload-artifact from 3.pre.node20 to 4.3.3

Bump actions/upload-artifact from 3.pre.node20 to 4.3.3 #810

Workflow file for this run

name: Rhino CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
strategy:
# Some tests require more CPU, and all can use multiple CPUs
max-parallel: 1
matrix:
java: [ '11', '17', '21' ]
name: Rhino Java ${{ matrix.java }}
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Check out test262
# We don't actually want all the history for this part
run: git submodule update --init --single-branch
- name: Set up Java
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Check everything with Gradle
run: >-
./gradlew check
- name: Upload results
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: reports-java-${{ matrix.java }}
path: '*/build/reports'