Skip to content

Commit 48b529d

Browse files
authored
Address GHA deprecation warnings (#10754)
1 parent b9762b4 commit 48b529d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v3
2323

24-
- uses: actions/setup-python@v2
24+
- uses: actions/setup-python@v4
2525
with:
2626
python-version: 3.6
2727

2828
- name: Cache Mint packages
29-
uses: actions/cache@v1
29+
uses: actions/cache@v3
3030
with:
3131
path: ${{ env.MINT_PATH }}
3232
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}

.github/workflows/firestore.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
- uses: actions/checkout@v3
7373

74-
- uses: actions/setup-python@v2
74+
- uses: actions/setup-python@v4
7575
with:
7676
python-version: 3.6
7777

@@ -102,15 +102,15 @@ jobs:
102102
cache_key: ${{ matrix.os }}
103103

104104
- name: Prepare ccache
105-
uses: actions/cache@v1
105+
uses: actions/cache@v3
106106
with:
107107
path: ~/.ccache
108108
key: firestore-ccache-${{ runner.os }}-${{ github.sha }}
109109
restore-keys: |
110110
firestore-ccache-${{ runner.os }}-
111111
112112
- name: Cache Mint packages
113-
uses: actions/cache@v1
113+
uses: actions/cache@v3
114114
with:
115115
path: ${{ env.MINT_PATH }}
116116
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
@@ -146,7 +146,7 @@ jobs:
146146
cache_key: ${{ matrix.os }}
147147

148148
- name: Prepare ccache
149-
uses: actions/cache@v1
149+
uses: actions/cache@v3
150150
with:
151151
path: ~/.ccache
152152
key: firestore-ccache-${{ runner.os }}-${{ matrix.sanitizer }}-${{ github.sha }}

.github/workflows/update-cpp-sdk-on-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Setup python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: 3.7
2727

0 commit comments

Comments
 (0)