Skip to content

Commit 39d42e6

Browse files
committed
Update workflow versions
1 parent 2af0217 commit 39d42e6

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: 'Checkout Repository'
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
- name: 'Dependency Review'
24-
uses: actions/dependency-review-action@v1
24+
uses: actions/dependency-review-action@v4

.github/workflows/python-test-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
# Disabling shallow clone is recommended for improving relevancy of reporting
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.9'
2222
- name: Install dependencies
@@ -28,11 +28,11 @@ jobs:
2828
- name: Test
2929
run: pytest --cov=howlongtobeatpy --cov-report=xml
3030
- name: Upload coverage to Codecov
31-
uses: codecov/codecov-action@v3
31+
uses: codecov/codecov-action@v4
3232
with:
3333
token: ${{ secrets.CODECOV_TOKEN }}
3434
- name: SonarCloud Scan
35-
uses: sonarsource/sonarcloud-github-action@master
35+
uses: sonarsource/sonarcloud-github-action@v2.3.0
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/python-test-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
# Disabling shallow clone is recommended for improving relevancy of reporting
1717
fetch-depth: 0
1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.9'
2222
- name: Install dependencies

.github/workflows/python-test-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
# Disabling shallow clone is recommended for improving relevancy of reporting
2525
fetch-depth: 0
2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: '3.9'
3030
- name: Install dependencies
@@ -35,11 +35,11 @@ jobs:
3535
- name: Test
3636
run: pytest --cov=howlongtobeatpy --cov-report=xml
3737
- name: Upload coverage to Codecov
38-
uses: codecov/codecov-action@v3
38+
uses: codecov/codecov-action@v4
3939
with:
4040
token: ${{ secrets.CODECOV_TOKEN }}
4141
- name: SonarCloud Scan
42-
uses: sonarsource/sonarcloud-github-action@master
42+
uses: sonarsource/sonarcloud-github-action@v2.3.0
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 commit comments

Comments
 (0)