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-http.git
The following commit(s) were added to refs/heads/main by this push:
new c98db6bd9 update actions to avoid build warnings (#132)
c98db6bd9 is described below
commit c98db6bd9774cef38f3ce33a18731f277a1c5792
Author: PJ Fanning <[email protected]>
AuthorDate: Wed Apr 5 15:47:56 2023 +0000
update actions to avoid build warnings (#132)
---
.github/workflows/nightly.yml | 6 +++---
.github/workflows/publish.yml | 4 ++--
.github/workflows/validate-and-test.yml | 10 +++++-----
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 705907536..7603d8dd4 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -18,7 +18,7 @@ jobs:
PEKKO_VERSION: [default, main]
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
@@ -32,7 +32,7 @@ jobs:
uses: coursier/cache-action@v6
- name: Cache Build Target
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt',
'project/build.properties', 'project/**/*.scala') }}
@@ -47,7 +47,7 @@ jobs:
run: sbt -Dpekko.http.parallelExecution=false -Dakka.test.timefactor=2
-Dpekko.http.build.pekko.version=${{ matrix.PEKKO_VERSION }} ++${{
matrix.SCALA_VERSION }} mimaReportBinaryIssues test
- name: Upload test results
- uses: actions/upload-artifact@v2 # upload test results
+ uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous
step failed
with:
name: test-results-${{ matrix.JDK }}-${{ matrix.SCALA_VERSION }}-${{
matrix.PEKKO_VERSION }}
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 995d0a247..cc32ab2ec 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -12,7 +12,7 @@ jobs:
if: github.repository == 'apache/incubator-pekko-http'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
if: github.repository == 'apache/incubator-pekko-http'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
diff --git a/.github/workflows/validate-and-test.yml
b/.github/workflows/validate-and-test.yml
index 53b7f578e..ec9b61f74 100644
--- a/.github/workflows/validate-and-test.yml
+++ b/.github/workflows/validate-and-test.yml
@@ -18,7 +18,7 @@ jobs:
if: github.repository == 'apache/incubator-pekko-http'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Scala on JDK 8
uses: actions/setup-java@v3
@@ -30,7 +30,7 @@ jobs:
uses: coursier/cache-action@v6
- name: Cache Build Target
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt',
'project/build.properties', 'project/**/*.scala') }}
@@ -57,7 +57,7 @@ jobs:
JDK: [8, 11]
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
with:
fetch-depth: 0
@@ -71,7 +71,7 @@ jobs:
uses: coursier/cache-action@v6
- name: Cache Build Target
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt',
'project/build.properties', 'project/**/*.scala') }}
@@ -93,7 +93,7 @@ jobs:
run: sbt -Dpekko.http.parallelExecution=false -Dakka.test.timefactor=2
++${{ matrix.SCALA_VERSION }} mimaReportBinaryIssues test
- name: Upload test results
- uses: actions/upload-artifact@v2 # upload test results
+ uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous
step failed
with:
name: test-results-${{ matrix.JDK }}-${{ matrix.SCALA_VERSION }}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]