Skip to content

Bump org.jetbrains.kotlin:kotlin-scripting-jvm from 1.8.22 to 1.9.0 #507

Bump org.jetbrains.kotlin:kotlin-scripting-jvm from 1.8.22 to 1.9.0

Bump org.jetbrains.kotlin:kotlin-scripting-jvm from 1.8.22 to 1.9.0 #507

Workflow file for this run

---
name: CI
on:
workflow_dispatch:
push:
branches-ignore:
- main
jobs:
ci-build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ 8, 17 ]
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'gradle'
- name: Install Docker on macOS
if: matrix.os == 'macos-latest'
uses: ./.github/actions/docker-install-macos
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker version
run: docker version
- name: docker info
run: docker info
- name: java version
run: java -version
- name: Set up Go
if: matrix.os == 'windows-latest'
uses: actions/setup-go@v4
with:
go-version: 1.17
- name: debug dns issues on Windows
if: matrix.os == 'windows-latest'
run: |
nslookup registry-1.docker.io
curl -v https://registry-1.docker.io/
curl -v https://registry-1.docker.io/v2/
curl -v --head https://registry-1.docker.io/v2/gesellix/echo-server/manifests/os-windows
go run .github/check.go
- name: clean build
run: ./gradlew clean build --info --stacktrace
- name: Upload Test Results
# see publish-test-results.yml for workflow that publishes test results without security issues for forks
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: test-results
path: '**/build/test-results/test/TEST-*.xml'
...