Skip to content

Commit

Permalink
update actions due to node16 warnings (apache#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Mar 27, 2024
1 parent b6263de commit 34be8ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: coursier/cache-action@v6

- name: Cache Build Target
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt', 'project/build.properties', 'project/**/*.scala') }}
Expand All @@ -48,7 +48,7 @@ jobs:
run: sbt -Dpekko.http.parallelExecution=false -Dpekko.test.timefactor=2 -Dpekko.build.pekko.version=${{ matrix.PEKKO_VERSION }} "++ ${{ matrix.SCALA_VERSION }}" mimaReportBinaryIssues test

- name: Upload test results
uses: actions/upload-artifact@v3 # upload test results
uses: actions/upload-artifact@v4 # 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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: coursier/cache-action@v6

- name: Cache Build Target
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt', 'project/build.properties', 'project/**/*.scala') }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
uses: coursier/cache-action@v6

- name: Cache Build Target
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: project/**/target
key: build-target-${{ hashFiles('**/*.sbt', 'project/build.properties', 'project/**/*.scala') }}
Expand All @@ -100,7 +100,7 @@ jobs:
run: sbt -Dpekko.http.parallelExecution=false -Dpekko.test.timefactor=2 ++${{ matrix.SCALA_VERSION }} mimaReportBinaryIssues test

- name: Upload test results
uses: actions/upload-artifact@v3 # upload test results
uses: actions/upload-artifact@v4 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results-${{ matrix.JDK }}-${{ matrix.SCALA_VERSION }}
Expand Down

0 comments on commit 34be8ce

Please sign in to comment.