Skip to content

Commit db13a87

Browse files
committed
ci: update action versions
1 parent a849dfb commit db13a87

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- !step
4343
name: Setup | Checkout Repository at Workflow SHA
44-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
44+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4545
with:
4646
ref: ${{ github.sha }}
4747
fetch-depth: 0
@@ -57,7 +57,7 @@ jobs:
5757

5858
- !step
5959
name: Setup | Install uv
60-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
60+
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
6161
- name: Setup | Install python-semantic-release
6262
env:
6363
UV_NO_MANAGED_PYTHON: true

.github/workflows/continuous-delivery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- !step
2929
name: Setup | Checkout Repository
30-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
30+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3131
- !step
3232
name: Lint
3333
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- !step
5555
name: Setup | Checkout Repository on Release Branch
56-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
56+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5757
with:
5858
ref: ${{ github.ref_name }}
5959
fetch-depth: 0
@@ -69,7 +69,7 @@ jobs:
6969

7070
- !step
7171
name: Setup | Install uv
72-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
72+
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
7373
- name: Setup | Install python-semantic-release
7474
run: uv tool install python-semantic-release
7575

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- !step
3535
name: Setup | Checkout Repository
36-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
36+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3737
with:
3838
ref: ${{ github.sha }}
3939
fetch-depth: 1
@@ -55,7 +55,7 @@ jobs:
5555

5656
- !step
5757
name: Setup | Install uv
58-
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
58+
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
5959
- name: Setup | Install Project Dependencies for Test
6060
env:
6161
UV_NO_MANAGED_PYTHON: true

tests/e2e/test_update_actions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def test_update_action(cli_runner: CliRunner, test_project_path_str, step_parser
2525
expected_actions["actions/checkout"] = Action(
2626
owner="actions",
2727
repo="checkout",
28-
commit="1af3b93b6815bc44a9784bd300feb67ff0d1eeb3",
29-
version=Version.parse("6.0.0"),
28+
commit="8e8c483db84b4bee98b60c0593521ed34d9990e8",
29+
version=Version.parse("6.0.1"),
3030
)
3131
expected_actions["actions/download-artifact"] = Action(
3232
owner="actions",
@@ -55,8 +55,8 @@ def test_update_action(cli_runner: CliRunner, test_project_path_str, step_parser
5555
expected_actions["astral-sh/setup-uv"] = Action(
5656
owner="astral-sh",
5757
repo="setup-uv",
58-
commit="1e862dfacbd1d6d858c55d9b792c756523627244",
59-
version=Version.parse("7.1.4"),
58+
commit="ed21f2f24f8dd64503750218de024bcf64c7250a",
59+
version=Version.parse("7.1.5"),
6060
)
6161
expected_actions["pypa/gh-action-pypi-publish"] = Action(
6262
owner="pypa",

0 commit comments

Comments
 (0)