We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93612af commit 102842aCopy full SHA for 102842a
1 file changed
.github/workflows/test-and-deploy.yml
@@ -22,11 +22,11 @@ jobs:
22
DOCKER_LOGIN: ${{ secrets.DOCKER_USERNAME && secrets.DOCKER_AUTH_TOKEN }}
23
steps:
24
- name: Checkout sendgrid-python
25
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
26
27
- name: Login to Docker Hub
28
if: env.DOCKER_LOGIN
29
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
30
with:
31
username: ${{ secrets.DOCKER_USERNAME }}
32
password: ${{ secrets.DOCKER_AUTH_TOKEN }}
@@ -41,10 +41,10 @@ jobs:
41
runs-on: ubuntu-latest
42
43
44
45
46
- name: Set up Python
47
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
48
49
python-version: '3.10'
50
0 commit comments