Skip to content

Commit da12612

Browse files
committed
ci: update GitHub Actions to latest versions
Updates GH Actions to latest versions. Related-Task: INTER-2269
1 parent 236c2fe commit da12612

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/coverage-diff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
coverage-diff:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v7
1212
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
1313
with:
1414
enable-cache: true
@@ -20,7 +20,7 @@ jobs:
2020
uv run coverage run --source=fingerprint_server_sdk -m pytest
2121
uv run coverage xml
2222
- name: Get Cover
23-
uses: orgoro/coverage@3f13a558c5af7376496aa4848bf0224aead366ac
23+
uses: orgoro/coverage@ca0c362dc1a4f100447309405e6dfea47e251495 # v3.3.1
2424
with:
2525
coverageFile: ./coverage.xml
2626
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/coverage-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
coverage-report:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
1616
with:
1717
enable-cache: true
@@ -27,13 +27,13 @@ jobs:
2727
rm ./htmlcov/.gitignore
2828
2929
- name: Create Coverage Badges
30-
uses: jaywcjlove/coverage-badges-cli@e07f25709cd25486855c1ba1b26da53576ff3620
30+
uses: jaywcjlove/coverage-badges-cli@998665f7962b1a3935ba8c3e786171a99436e5d1 # v2.3.0
3131
with:
3232
source: coverage-summary.json
3333
output: htmlcov/badges.svg
3434

3535
- name: Deploy 🚀
36-
uses: JamesIves/github-pages-deploy-action@8817a56e5bfec6e2b08345c81f4d422db53a2cdc
36+
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4.8.0
3737
with:
3838
branch: gh-pages
3939
folder: htmlcov

.github/workflows/functional_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11" ]
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v7
2929
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
3030
with:
3131
enable-cache: true

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: "ubuntu-latest"
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v7
1616
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
1717
with:
1818
enable-cache: true

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
2222
steps:
2323
- name: 'Checkout repository'
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v7
2525
if: github.event_name == 'release'
2626
with:
2727
ref: ${{ github.event.release.tag_name }}
2828

2929
- name: 'Checkout repository'
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v7
3131
if: github.event_name == 'workflow_dispatch'
3232
with:
3333
ref: ${{ github.event.inputs.tag }}
@@ -41,7 +41,7 @@ jobs:
4141
run: uv build
4242

4343
- name: Publish package distributions to PyPI
44-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
44+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
4545

4646
e2e-tests:
4747
needs: publish

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11" ]
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v7
1818
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
1919
with:
2020
enable-cache: true

0 commit comments

Comments
 (0)