This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-grpc.git
The following commit(s) were added to refs/heads/main by this push:
new 6a906d57 upgrade to TimonVS/pr-labeler-action@v4 (#13)
6a906d57 is described below
commit 6a906d57bb9850bd318270cb45c4e86fae2a3ef0
Author: PJ Fanning <[email protected]>
AuthorDate: Wed Jan 25 10:32:15 2023 +0000
upgrade to TimonVS/pr-labeler-action@v4 (#13)
* upgrade to TimonVS/pr-labeler-action@v4
* fix workflows so they work in pekkp-grpc repo
---
.github/release-drafter.yml | 2 +-
.github/workflows/build-test.yml | 32 ++++++++++++++++----------------
.github/workflows/format.yml | 2 +-
.github/workflows/link-validator.yml | 4 ++--
.github/workflows/pr-labeler.yml | 2 +-
.github/workflows/publish.yml | 18 +++++++++---------
6 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml
index e9c2eda2..5f39f3bb 100644
--- a/.github/release-drafter.yml
+++ b/.github/release-drafter.yml
@@ -17,7 +17,7 @@ categories:
- title: 'Updates'
label: 'update'
-change-template: '- $TITLE
[#$NUMBER](https://github.com/akka/akka-grpc/issues/$NUMBER) by
[@$AUTHOR](https://github.com/$AUTHOR)'
+change-template: '- $TITLE
[#$NUMBER](https://github.com/apache/incubator-pekko-grpc/issues/$NUMBER) by
[@$AUTHOR](https://github.com/$AUTHOR)'
template: |
## Changes
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 4edf7437..168a068e 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -17,13 +17,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 11
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -31,7 +31,7 @@ jobs:
uses: coursier/[email protected]
- name: FOSSA policy check
- if: ${{ github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == 'akka/akka-grpc' }}
+ if: ${{ github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == 'apache/incubator-pekko-grpc'
}}
run: |-
curl -H 'Cache-Control: no-cache'
https://raw.githubusercontent.com/fossas/spectrometer/master/install.sh | bash
fossa analyze && fossa test
@@ -48,13 +48,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 11
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
- name: Cache Coursier cache
@@ -72,16 +72,16 @@ jobs:
fail-fast: false
matrix:
SCALA_VERSION: [2.12, 2.13]
- # use 1.8 when https://github.com/akka/akka-grpc/issues/1332 is fixed
+ # use 1.8 when
https://github.com/apache/incubator-pekko-grpc/issues/1332 is fixed
JABBA_JDK: [1.8.0-275, 1.11]
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK ${{ matrix.JABBA_JDK }}
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: adopt@${{ matrix.JABBA_JDK }}
@@ -107,12 +107,12 @@ jobs:
scala-version: 2.13
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -127,12 +127,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -182,12 +182,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -227,12 +227,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 11
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
- name: Cache Coursier cache
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 9ce98e55..502401a8 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
diff --git a/.github/workflows/link-validator.yml
b/.github/workflows/link-validator.yml
index 865ac8a6..ef6870da 100644
--- a/.github/workflows/link-validator.yml
+++ b/.github/workflows/link-validator.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# See
https://github.com/actions/checkout/issues/299#issuecomment-677674415
ref: ${{ github.event.pull_request.head.sha }}
@@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- name: Set up JDK 11
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
index 71267c6f..9ae6eeb5 100644
--- a/.github/workflows/pr-labeler.yml
+++ b/.github/workflows/pr-labeler.yml
@@ -7,6 +7,6 @@ jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- - uses: TimonVS/pr-labeler-action@v3
+ - uses: TimonVS/pr-labeler-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 17446382..c80da9e7 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -10,16 +10,16 @@ jobs:
sbt:
name: sbt publish
runs-on: ubuntu-latest
- if: github.repository == 'akka/akka-grpc'
+ if: github.repository == 'apache/incubator-pekko-grpc'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -37,16 +37,16 @@ jobs:
gradle-plugin:
name: Release gradle plugin
runs-on: ubuntu-latest
- if: github.repository == 'akka/akka-grpc'
+ if: github.repository == 'apache/incubator-pekko-grpc'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
@@ -56,16 +56,16 @@ jobs:
documentation:
name: Documentation
runs-on: ubuntu-latest
- if: github.repository == 'akka/akka-grpc'
+ if: github.repository == 'apache/incubator-pekko-grpc'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
# we don't know what commit the last tag was it's safer to get
entire repo so previousStableVersion resolves
fetch-depth: 0
- name: Set up JDK 8
- uses: olafurpg/setup-scala@v10
+ uses: olafurpg/setup-scala@v13
with:
java-version: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]