Skip to content

Commit 689bf20

Browse files
Update workflows from templates. (#90)
1 parent 9dba1ff commit 689bf20

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/bump-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: '!contains(join(github.event.commits.*.message), needs.vars.outputs.commit-prefix)'
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
token: ${{ secrets.WORKFLOW_PAT }}
3535
- name: Configure git

.github/workflows/rust-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
format:
1818
runs-on: ubuntu-20.04
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- uses: actions-rs/toolchain@v1
2222
with:
2323
profile: minimal
@@ -37,7 +37,7 @@ jobs:
3737
name: Clippy
3838
runs-on: ubuntu-20.04
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- uses: actions-rs/toolchain@v1
4242
with:
4343
profile: minimal

.github/workflows/rust-daily.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- stable
1717
- beta
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- uses: actions-rs/toolchain@v1
2121
with:
2222
profile: minimal

.github/workflows/typescript-ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
rust_version: beta
5757
fail-fast: false
5858
steps:
59-
- uses: actions/checkout@v2
60-
- uses: actions/setup-node@v2
59+
- uses: actions/checkout@v3
60+
- uses: actions/setup-node@v3
6161
with:
6262
node-version: ${{ matrix.node_version }}
6363
cache: yarn
@@ -75,7 +75,7 @@ jobs:
7575
- name: Check test coverage
7676
if: ${{ contains(matrix.system.os, 'ubuntu') && matrix.node_version == '16'
7777
&& matrix.rust_version == 'stable' && github.base_ref != '' }}
78-
uses: anuraag016/Jest-Coverage-Diff@V1.3
78+
uses: anuraag016/Jest-Coverage-Diff@V1.4
7979
with:
8080
fullCoverageDiff: false
8181
delta: 0.2
@@ -98,7 +98,7 @@ jobs:
9898
steps:
9999
- run: apk add build-base git python3 wget
100100
- run: echo RUSTFLAGS="-C target-feature=-crt-static" >> "${GITHUB_ENV}"
101-
- uses: actions/checkout@v2
101+
- uses: actions/checkout@v3
102102
- uses: actions-rs/toolchain@v1
103103
with:
104104
profile: minimal

.github/workflows/update-workflows.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
update:
1717
runs-on: ubuntu-20.04
1818
steps:
19-
- uses: actions/setup-python@v2
19+
- uses: actions/setup-python@v3
2020
- name: Install JSON tools
2121
run: pip3 install jsonpatch pyyaml
2222
- name: Build yaml2json, json2yaml
@@ -56,12 +56,12 @@ jobs:
5656
5757
'
5858
- name: Check out this repo
59-
uses: actions/checkout@v2
59+
uses: actions/checkout@v3
6060
with:
6161
path: thisrepo
6262
token: ${{ secrets.WORKFLOW_PAT }}
6363
- name: Check out template repo
64-
uses: actions/checkout@v2
64+
uses: actions/checkout@v3
6565
with:
6666
path: depot
6767
repository: IronCoreLabs/depot

0 commit comments

Comments
 (0)