Skip to content

Commit a51ce19

Browse files
authored
Fixing sonarcloud metrics (#179)
1 parent 7952638 commit a51ce19

9 files changed

+15
-17
lines changed

.github/workflows/action_items.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
2323
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- name: Setup Python
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v4
2727

2828
- name: Install Dependencies
2929
run: make install

.github/workflows/metrics_daily_sendgrid.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Setup Python
1717
id: setup_python
18-
uses: actions/setup-python@v2
18+
uses: actions/setup-python@v4
1919

2020
- name: Install Dependencies
2121
id: install_deps

.github/workflows/metrics_daily_twilio.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: Setup Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818

1919
- name: Install Dependencies
2020
run: make install

.github/workflows/sonar_cloud_metrics.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout dx-automator
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: Setup Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
cache: 'pip'
2020

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 20
1111
steps:
1212
- name: Checkout dx-automator
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414

1515
- name: Set up Node
1616
uses: actions/setup-node@v2
@@ -35,10 +35,10 @@ jobs:
3535
timeout-minutes: 20
3636
steps:
3737
- name: Checkout dx-automator
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
- name: Setup Python
41-
uses: actions/setup-python@v2
41+
uses: actions/setup-python@v4
4242
with:
4343
cache: 'pip'
4444

.github/workflows/test_datadog_release_metric.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
releaseMetric:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111

1212
- uses: sendgrid/dx-automator/actions/datadog-release-metric@main
1313
env:

.github/workflows/update_git_hub_labels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout dx-automator
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: Setup Python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
cache: 'pip'
2020

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ target/
6868
# IPython Notebook
6969
.ipynb_checkpoints
7070

71-
# pyenv
72-
.python-version
73-
7471
# celery beat schedule file
7572
celerybeat-schedule
7673

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.10.8

0 commit comments

Comments
 (0)