Skip to content

Commit b761075

Browse files
committed
Avoids a double checkout, since actions/checkout 6.0.2 fetches all tags properly
1 parent 461ccff commit b761075

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

.github/actions/release/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@ outputs:
1515
runs:
1616
using: composite
1717
steps:
18-
- name: Checkout
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20-
with:
21-
clean: false
22-
fetch-depth: 0
23-
fetch-tags: true
24-
2518
- name: Test release condition
2619
id: release
2720
shell: bash

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
steps:
6464
- name: Checkout project for release
6565
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
66+
with:
67+
fetch-tags: true
6668
- name: Checkout release action
6769
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
6870
with:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
99

1010
**Released**: 2026.04.08
1111

12+
* Avoids a double checkout, since actions/checkout 6.0.2 fetches all tags properly
1213
* Dependency Updates
1314
* actions/checkout 6.0.2
1415
* reviewdog/action-actionlint 1.72.0

0 commit comments

Comments
 (0)