diff --git a/ci/android.yml b/ci/android.yml index 526c4f6..23f10f1 100644 --- a/ci/android.yml +++ b/ci/android.yml @@ -12,6 +12,6 @@ jobs: - name: set up JDK 1.8 uses: actions/setup-java@v1 with: - version: 1.8 + java-version: 1.8 - name: Build with Gradle run: ./gradlew build diff --git a/ci/ant.yml b/ci/ant.yml index 283f16d..757429c 100644 --- a/ci/ant.yml +++ b/ci/ant.yml @@ -12,6 +12,6 @@ jobs: - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: - version: 1.8 + java-version: 1.8 - name: Build with Ant run: ant -noinput -buildfile build.xml diff --git a/ci/asp.net-core.yml b/ci/asp.net-core.yml index c6ce309..74a9e41 100644 --- a/ci/asp.net-core.yml +++ b/ci/asp.net-core.yml @@ -12,6 +12,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - version: 2.2.108 + dotnet-version: 2.2.108 - name: Build with dotnet run: dotnet build --configuration Release diff --git a/ci/go.yml b/ci/go.yml index 661cbc5..3ed607b 100644 --- a/ci/go.yml +++ b/ci/go.yml @@ -10,7 +10,7 @@ jobs: - name: Set up Go 1.12 uses: actions/setup-go@v1 with: - version: 1.12 + go-version: 1.12 id: go - name: Check out code into the Go module directory diff --git a/ci/gradle.yml b/ci/gradle.yml index 45f2449..8e4dc5e 100644 --- a/ci/gradle.yml +++ b/ci/gradle.yml @@ -12,6 +12,6 @@ jobs: - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: - version: 1.8 + java-version: 1.8 - name: Build with Gradle run: ./gradlew build diff --git a/ci/maven.yml b/ci/maven.yml index 50a2cc8..e50300b 100644 --- a/ci/maven.yml +++ b/ci/maven.yml @@ -12,6 +12,6 @@ jobs: - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: - version: 1.8 + java-version: 1.8 - name: Build with Maven run: mvn package --file pom.xml diff --git a/ci/node.js.yml b/ci/node.js.yml index 192a46c..e993f9b 100644 --- a/ci/node.js.yml +++ b/ci/node.js.yml @@ -16,7 +16,7 @@ jobs: - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: - version: ${{ matrix.node-version }} + node-version: ${{ matrix.node-version }} - name: npm install, build, and test run: | npm install diff --git a/ci/npm-publish.yml b/ci/npm-publish.yml index 88dcca1..3ae89d4 100644 --- a/ci/npm-publish.yml +++ b/ci/npm-publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - version: 12 + node-version: 12 - run: npm ci - run: npm test @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - version: 12 + node-version: 12 registry-url: https://registry.npmjs.org/ - run: npm publish env: @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - version: 12 + node-version: 12 registry-url: https://npm.pkg.github.com/ scope: '@your-github-username' - run: npm publish diff --git a/ci/python-package.yml b/ci/python-package.yml index 209dc9c..8228eca 100644 --- a/ci/python-package.yml +++ b/ci/python-package.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: - version: ${{ matrix.python-version }} + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/ci/ruby.yml b/ci/ruby.yml index fb988b1..7258d72 100644 --- a/ci/ruby.yml +++ b/ci/ruby.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: - version: 2.6.x + ruby-version: 2.6.x - name: Build and test with Rake run: | gem install bundler