Skip to content

Commit a7582b4

Browse files
authored
bump github actions (#301)
* bump github actions * bump version
1 parent 925f005 commit a7582b4

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/build.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
- name: Set up Node 16.14
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v3
1818
with:
1919
node-version: 16.14
2020

@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Restore node modules from cache
2626
id: cache-node-modules
27-
uses: actions/cache@v2
27+
uses: actions/cache@v3
2828
with:
2929
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
3030
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -48,10 +48,10 @@ jobs:
4848
node-version: [12.13, 14.15, 16.14]
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v2
51+
uses: actions/checkout@v3
5252

5353
- name: Set up Node ${{ matrix.node-version }}
54-
uses: actions/setup-node@v1
54+
uses: actions/setup-node@v3
5555
with:
5656
node-version: ${{ matrix.node-version }}
5757

@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Restore node modules from cache
6363
id: cache-node-modules
64-
uses: actions/cache@v2
64+
uses: actions/cache@v3
6565
with:
6666
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
6767
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -87,16 +87,16 @@ jobs:
8787
runtime-param: [12, 14, 16]
8888
steps:
8989
- name: Checkout
90-
uses: actions/checkout@v2
90+
uses: actions/checkout@v3
9191

9292
- name: Set up Node 14
93-
uses: actions/setup-node@v1
93+
uses: actions/setup-node@v3
9494
with:
9595
node-version: 14
9696

9797
- name: Set up Docker Buildx
9898
id: buildx
99-
uses: docker/setup-buildx-action@v1
99+
uses: docker/setup-buildx-action@v2
100100

101101
- name: Complete Buildx Setup
102102
run: docker run --privileged --rm tonistiigi/binfmt --install all
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Restore node modules from cache
109109
id: cache-node-modules
110-
uses: actions/cache@v2
110+
uses: actions/cache@v3
111111
with:
112112
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
113113
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
@@ -141,7 +141,7 @@ jobs:
141141
if: always() && (needs.integration-test.result == 'failure')
142142
steps:
143143
- name: Checkout
144-
uses: actions/checkout@v2
144+
uses: actions/checkout@v3
145145
- name: Send a failure metric
146146
env:
147147
DD_API_KEY: ${{ secrets.DD_API_KEY }}

.github/workflows/check-size.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
node-version: [12.13, 14.15, 16.14]
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
- name: Set up Node 14.15
16-
uses: actions/setup-node@v1
16+
uses: actions/setup-node@v3
1717
with:
1818
node-version: 14.15
1919

2020
- name: Set up Docker Buildx
2121
id: buildx
22-
uses: docker/setup-buildx-action@v1
22+
uses: docker/setup-buildx-action@v2
2323

2424
- name: Complete Buildx Setup
2525
run: docker run --privileged --rm tonistiigi/binfmt --install all

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v3
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v1
45+
uses: github/codeql-action/init@v2
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v1
56+
uses: github/codeql-action/autobuild@v2
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v1
70+
uses: github/codeql-action/analyze@v2

.github/workflows/update-deps.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
1414

15-
- uses: actions/setup-node@v1
15+
- uses: actions/setup-node@v3
1616
with:
1717
node-version: "16.x"
1818

0 commit comments

Comments
 (0)