Skip to content

Commit 02d529e

Browse files
changes to actions (#276)
* changes to actions * wip * wip * wip * updated build actions
1 parent 2482dca commit 02d529e

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

.github/codecov.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
target: auto
6+
threshold: 0.5%
7+
patch:
8+
default:
9+
target: auto
10+
threshold: 0.5%

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@v1
34+
uses: github/codeql-action/init@v2
3535
with:
3636
languages: ${{ matrix.language }}
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v1
39+
uses: github/codeql-action/analyze@v2

.github/workflows/onrelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Set up Python 3.8
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.8.12'
2525
cache: 'pipenv'

.github/workflows/push.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

@@ -28,7 +28,7 @@ jobs:
2828
# ${{ runner.os }}-go-
2929

3030
- name: Set up Python 3.8
31-
uses: actions/setup-python@v4
31+
uses: actions/setup-python@v5
3232
with:
3333
python-version: '3.8.12'
3434
cache: 'pipenv'
@@ -53,8 +53,9 @@ jobs:
5353
run: make test
5454

5555
- name: Publish test coverage to coverage site
56-
uses: codecov/codecov-action@v1
56+
uses: codecov/codecov-action@v4
5757
with:
58-
files: ./coverage.xml
58+
token: ${{ secrets.CODECOV_TOKEN }}
5959
name: dbldatagen
60-
verbose: true
60+
files: ./coverage.xml
61+

0 commit comments

Comments
 (0)