File tree Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
13
13
permissions :
14
14
contents : read
15
15
steps :
16
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16
+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
17
17
with :
18
18
fetch-depth : 0
19
19
- name : Set up pixi
20
- uses : prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.14
20
+ uses : prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
21
21
with :
22
22
environments : build
23
23
- name : Set version
@@ -48,17 +48,17 @@ jobs:
48
48
- target-platform : win-64
49
49
os : windows-latest
50
50
steps :
51
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
51
+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
52
52
with :
53
53
fetch-depth : 0
54
54
- name : Set up pixi
55
- uses : prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.14
55
+ uses : prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
56
56
with :
57
57
environments : build
58
58
- name : Set version
59
59
run : pixi run -e build set-version
60
60
- name : Build wheel
61
- uses : PyO3/maturin-action@e10f6c464b90acceb5f640d31beda6d586ba7b4a # v1.49.3
61
+ uses : PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
62
62
with :
63
63
command : build
64
64
args : --out dist -i python3.10
80
80
id-token : write
81
81
environment : pypi
82
82
steps :
83
- - uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3 .0
83
+ - uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0 .0
84
84
with :
85
85
path : dist
86
86
merge-multiple : true
87
87
- name : Publish package on PyPi
88
- uses : pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
88
+ uses : pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
Original file line number Diff line number Diff line change 21
21
steps :
22
22
- name : Check valid conventional commit message
23
23
id : lint
24
- uses : amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
24
+ uses : amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
25
25
with :
26
26
subjectPattern : ^[A-Z].+[^. ]$ # subject must start with uppercase letter and may not end with a dot/space
27
27
env :
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- name : Checkout branch
22
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22
+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23
23
with :
24
24
# needed for 'pre-commit-mirrors-insert-license'
25
25
fetch-depth : 0
26
26
- name : Set up pixi
27
- uses : prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.14
27
+ uses : prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
28
28
with :
29
29
environments : default lint
30
30
- name : Install repository
@@ -51,17 +51,17 @@ jobs:
51
51
with_optionals : true
52
52
steps :
53
53
- name : Checkout branch
54
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
54
+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
55
55
- name : Set up pixi
56
- uses : prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.14
56
+ uses : prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
57
57
with :
58
58
environments : ${{ matrix.environment }}
59
59
- name : Install repository
60
60
run : pixi run -e ${{ matrix.environment }} postinstall
61
61
- name : Run pytest
62
62
run : pixi run -e ${{ matrix.environment }} test-coverage --color=yes ${{ matrix.with_optionals && '-m with_optionals' || '-m "not with_optionals"'}} --cov=dataframely --cov-report=xml
63
63
- name : Upload codecov
64
- uses : codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
64
+ uses : codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
65
65
with :
66
66
files : ./coverage.xml
67
67
token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change 23
23
os : [ubuntu-latest, windows-latest]
24
24
steps :
25
25
- name : Checkout branch
26
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26
+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
27
27
- name : Set up pixi
28
- uses : prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.14
28
+ uses : prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1
29
29
with :
30
30
environments : nightly
31
31
- name : Install polars nightly
Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ jobs:
35
35
36
36
steps :
37
37
- name : " Checkout code"
38
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
38
+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
39
39
with :
40
40
persist-credentials : false
41
41
42
42
- name : " Run analysis"
43
- uses : ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
43
+ uses : ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
44
44
with :
45
45
results_file : results.sarif
46
46
results_format : sarif
74
74
# Upload the results to GitHub's code scanning dashboard (optional).
75
75
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
76
76
- name : " Upload to code-scanning"
77
- uses : github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # v3.29.5
77
+ uses : github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
78
78
with :
79
79
sarif_file : results.sarif
You can’t perform that action at this time.
0 commit comments