Skip to content

Commit 1fc2211

Browse files
authored
Merge pull request #18 from scribd/helen/SERF-2636/action-upgrade
[SERF-2636] Fix deprecated warning in Github Actions
2 parents 94000a6 + 3fdf6a6 commit 1fc2211

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
activity: ["0.13.7", "0.14.11", "1.0.11"]
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Setup terraform ${{ matrix.activity }}
22-
uses: hashicorp/setup-terraform@v1
22+
uses: hashicorp/setup-terraform@v2
2323
with:
2424
terraform_version: ${{ matrix.activity }}
2525

@@ -34,7 +34,7 @@ jobs:
3434
codeowners:
3535
runs-on: ubuntu-22.04
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838
- name: GitHub CODEOWNERS Validator
3939
uses: mszostok/codeowners-validator@v0.7.1
4040
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-22.04
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v3
1212
with:
1313
persist-credentials: false
1414

1515
- name: Semantic Release
16-
uses: cycjimmy/semantic-release-action@v2
16+
uses: cycjimmy/semantic-release-action@v3
1717
with:
1818
semantic_version: 19.0.5
1919
extra_plugins: |

0 commit comments

Comments
 (0)