浏览代码

🔨 Try out v3 actions

Scott Lahteine 2 年前
父节点
当前提交
959c559c43
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      .github/workflows/test-builds.yml

+ 4
- 4
.github/workflows/test-builds.yml 查看文件

@@ -113,10 +113,10 @@ jobs:
113 113
     steps:
114 114
 
115 115
     - name: Check out the PR
116
-      uses: actions/checkout@v2
116
+      uses: actions/checkout@v3
117 117
 
118 118
     - name: Cache pip
119
-      uses: actions/cache@v2
119
+      uses: actions/cache@v3
120 120
       with:
121 121
         path: ~/.cache/pip
122 122
         key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -124,13 +124,13 @@ jobs:
124 124
           ${{ runner.os }}-pip-
125 125
 
126 126
     - name: Cache PlatformIO
127
-      uses: actions/cache@v2
127
+      uses: actions/cache@v3
128 128
       with:
129 129
         path: ~/.platformio
130 130
         key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
131 131
 
132 132
     - name: Select Python 3.7
133
-      uses: actions/setup-python@v2
133
+      uses: actions/setup-python@v3
134 134
       with:
135 135
         python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
136 136
         architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

正在加载...
取消
保存