Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -61,7 +61,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand All @@ -85,7 +85,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:

steps:
- name: Check out release tag
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ env.RELEASE_TAG }}
fetch-depth: 0
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:

steps:
- name: Check out release tag
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ env.RELEASE_TAG }}
fetch-depth: 0
Expand Down
3 changes: 2 additions & 1 deletion tests/test_release_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ def test_workflows_pin_node24_capable_first_party_actions() -> None:
for path in WORKFLOWS:
text = path.read_text(encoding="utf-8")

assert "actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd" in text
assert "actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd" in text
assert "actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405" in text
assert "actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd" not in text
assert "actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5" not in text
assert "actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065" not in text

Expand Down