Skip to content

Commit 6fa15d2

Browse files
authored
Merge pull request #10 from leaonline/update-ci
updated ci
2 parents 86f9be4 + 1475533 commit 6fa15d2

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/tests.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,44 +13,44 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
# CACHING
1919
- name: Install Meteor
2020
id: cache-meteor-install
21-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2222
with:
2323
path: ~/.meteor
24-
key: v1-meteor-${{ hashFiles('.meteor/versions') }}
24+
key: v3-meteor-${{ hashFiles('.meteor/versions') }}
2525
restore-keys: |
26-
v1-meteor-
26+
v3-meteor-
2727
2828
- name: Cache NPM dependencies
2929
id: cache-meteor-npm
30-
uses: actions/cache@v2
30+
uses: actions/cache@v3
3131
with:
3232
path: ~/.npm
33-
key: v1-npm-${{ hashFiles('package-lock.json') }}
33+
key: v3-npm-${{ hashFiles('package-lock.json') }}
3434
restore-keys: |
35-
v1-npm-
35+
v3-npm-
3636
3737
- name: Cache Meteor build
3838
id: cache-meteor-build
39-
uses: actions/cache@v2
39+
uses: actions/cache@v3
4040
with:
4141
path: |
4242
.meteor/local/resolver-result-cache.json
4343
.meteor/local/plugin-cache
4444
.meteor/local/isopacks
4545
.meteor/local/bundler-cache/scanner
46-
key: v1-meteor_build_cache-${{ github.ref }}-${{ github.sha }}
46+
key: v3-meteor_build_cache-${{ github.ref }}-${{ github.sha }}
4747
restore-key: |
48-
v1-meteor_build_cache-
48+
v3-meteor_build_cache-
4949
5050
- name: Setup meteor
5151
uses: meteorengineer/setup-meteor@v1
5252
with:
53-
meteor-release: '2.5.1'
53+
meteor-release: '2.8.1'
5454

5555
- name: Run lint and tests
5656
run: |

0 commit comments

Comments
 (0)