Skip to content

Commit 9ff48ad

Browse files
chore(deps): update github actions (#377)
Signed-off-by: oep-renovate[bot] <212772560+oep-renovate[bot]@users.noreply.github.com> Co-authored-by: oep-renovate[bot] <212772560+oep-renovate[bot]@users.noreply.github.com>
1 parent 7664936 commit 9ff48ad

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
Build-Docs:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
permissions:
1414
contents: write
1515
steps:
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
python-version-file: ".python-version"
2424
- name: Install uv
25-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
25+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
2626
- name: Install dependencies
2727
run: |
2828
uv sync --locked --extra docs

.github/workflows/pre_commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
jobs:
1717
Code-Quality-Checks:
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: CHECKOUT REPOSITORY
2121
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -30,15 +30,15 @@ jobs:
3030
with:
3131
node-version: 22
3232
- name: Install uv
33-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
33+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
3434
- name: Install dependencies
3535
run: |
3636
uv sync --locked --all-extras
3737
- name: Run pre-commit checks
3838
run: |
3939
uv run pre-commit run --all-files
4040
Unit-Tests:
41-
runs-on: ubuntu-22.04
41+
runs-on: ubuntu-24.04
4242
steps:
4343
- name: CHECKOUT REPOSITORY
4444
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
python-version-file: ".python-version"
5151
- name: Install uv
52-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
52+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
5353
- name: Install dependencies
5454
run: |
5555
uv sync --locked --extra tests --extra ovms

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id-token: write # required by trusted publisher
4949
steps:
5050
- name: Download artifacts
51-
uses: actions/download-artifact@v5
51+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
5252
with:
5353
path: dist
5454
pattern: artifact-*

.github/workflows/renovate-config-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout configuration
32-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3333
with:
3434
persist-credentials: false
3535

.github/workflows/renovate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,19 @@ jobs:
6060

6161
steps:
6262
- name: Checkout
63-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6464
with:
6565
persist-credentials: false
6666

6767
- name: Get token
6868
id: get-github-app-token
69-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
69+
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
7070
with:
7171
app-id: ${{ secrets.RENOVATE_APP_ID }}
7272
private-key: ${{ secrets.RENOVATE_APP_PEM }}
7373

7474
- name: Self-hosted Renovate
75-
uses: renovatebot/github-action@13f127373fd3dc43b41b0979e37ba570d6c2b8f4 # v43.0.0
75+
uses: renovatebot/github-action@b11417b9eaac3145fe9a8544cee66503724e32b6 # v43.0.8
7676
with:
7777
configurationFile: .github/renovate.json5
7878
token: "${{ steps.get-github-app-token.outputs.token }}"

.github/workflows/test_accuracy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111
jobs:
1212
test_accuracy:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616
with:
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version-file: ".python-version"
2121
- name: Install uv
22-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
22+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
2323
- name: Install dependencies
2424
run: |
2525
uv sync --locked --extra tests --extra build --extra-index-url https://download.pytorch.org/whl/cpu

.github/workflows/test_precommit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111
jobs:
1212
Python-Functional-Tests:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: CHECKOUT REPOSITORY
1616
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
python-version-file: ".python-version"
2323
- name: Install uv
24-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
24+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
2525
- name: Install dependencies
2626
run: |
2727
uv sync --locked --extra tests --extra ovms --extra-index-url https://download.pytorch.org/whl/cpu
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
python-version: ${{ matrix.python-version }}
5353
- name: Install uv
54-
uses: astral-sh/setup-uv@d9e0f98d3fc6adb07d1e3d37f3043649ddad06a1 # v6.5.0
54+
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
5555
- name: serving_api
5656
run: |
5757
uv sync --locked --extra tests --extra ovms

0 commit comments

Comments
 (0)