8000 chore: upgrade GitHub Actions dependencies (#624) · JRandomSage/twilio-python@bd90596 · GitHub
[go: up one dir, main page]

Skip to content

Commit bd90596

Browse files
author
childish-sambino
authored
chore: upgrade GitHub Actions dependencies (twilio#624)
Fixes warning: > Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
1 parent 15eb9be commit bd90596

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/pr-lint.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ jobs:
88
name: Validate title
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: amannn/action-semantic-pull-request@v4
11+
- uses: amannn/action-semantic-pull-request@v5
1212
with:
13-
types: chore docs fix feat test misc
13+
types: |
14+
chore
15+
docs
16+
fix
17+
feat
18+
misc
19+
test
1420
env:
1521
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-and-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
2121
steps:
2222
- name: Checkout twilio-python
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

@@ -53,12 +53,12 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Checkout twilio-python
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v3
5757
with:
5858
fetch-depth: 0
5959

6060
- name: Set up Python
61-
uses: actions/setup-python@v2
61+
uses: actions/setup-python@v4
6262
with:
6363
python-version: '3.10'
6464

@@ -71,7 +71,7 @@ jobs:
7171
run: python -m build
7272

7373
- name: Login to Docker Hub
74-
uses: docker/login-action@v1
74+
uses: docker/login-action@v2
7575
with:
7676
username: ${{ secrets.DOCKER_USERNAME }}
7777
password: ${{ secrets.DOCKER_AUTH_TOKEN }}

0 commit comments

Comments
 (0)
0