Skip to content

Commit 38311e8

Browse files
committed
.github/workflows: Bump action major versions
Almost all of these major version bumps are because they upgraded to Node 16, which requires a new minimum version of the Runner (which matters for those maintaining their own runners). The main outlier is lock-threads, which changed the names of its input parameters.
1 parent 4cb0901 commit 38311e8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
name: "Gradle wrapper validation"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: gradle/wrapper-validation-action@v1

.github/workflows/lock.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
lock:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: dessant/lock-threads@v2
16+
- uses: dessant/lock-threads@v3
1717
with:
1818
github-token: ${{ github.token }}
19-
issue-lock-inactive-days: 90
20-
pr-lock-inactive-days: 90
19+
issue-inactive-days: 90
20+
pr-inactive-days: 90

.github/workflows/testing.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jobs:
2121
fail-fast: false # Should swap to true if we grow a large matrix
2222

2323
steps:
24-
- uses: actions/checkout@v2
25-
- uses: actions/setup-java@v2
24+
- uses: actions/checkout@v3
25+
- uses: actions/setup-java@v3
2626
with:
2727
java-version: ${{ matrix.jre }}
2828
distribution: 'temurin'
2929

3030
- name: Gradle cache
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: |
3434
~/.gradle/caches
@@ -37,7 +37,7 @@ jobs:
3737
restore-keys: |
3838
${{ runner.os }}-gradle-
3939
- name: Maven cache
40-
uses: actions/cache@v2
40+
uses: actions/cache@v3
4141
with:
4242
path: |
4343
~/.m2/repository
@@ -46,7 +46,7 @@ jobs:
4646
restore-keys: |
4747
${{ runner.os }}-maven-
4848
- name: Protobuf cache
49-
uses: actions/cache@v2
49+
uses: actions/cache@v3
5050
with:
5151
path: /tmp/protobuf-cache
5252
key: ${{ runner.os }}-maven-${{ hashFiles('buildscripts/make_dependencies.sh') }}
@@ -55,7 +55,7 @@ jobs:
5555
run: buildscripts/kokoro/unix.sh
5656
- name: Post Failure Upload Test Reports to Artifacts
5757
if: ${{ failure() }}
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v3
5959
with:
6060
name: Test Reports (JRE ${{ matrix.jre }})
6161
path: ./*/build/reports/tests/**
@@ -67,4 +67,4 @@ jobs:
6767
if: matrix.jre == 8 # Upload once, instead of for each job in the matrix
6868
run: ./gradlew :grpc-all:coveralls -x compileJava
6969
- name: Codecov
70-
uses: codecov/codecov-action@v2
70+
uses: codecov/codecov-action@v3

0 commit comments

Comments
 (0)