@@ -61,11 +61,11 @@ jobs:
6161 BRANCH="dev"
6262 fi
6363
64- echo "release_type=$TYPE" >> $GITHUB_OUTPUT
65- echo "target_branch=$BRANCH" >> $GITHUB_OUTPUT
64+ echo "release_type=$TYPE" >> " $GITHUB_OUTPUT"
65+ echo "target_branch=$BRANCH" >> " $GITHUB_OUTPUT"
6666 echo "Release type: $TYPE from $BRANCH"
6767
68- - uses : actions/checkout@v4
68+ - uses : actions/checkout@v6
6969 with :
7070 fetch-depth : 0
7171 ref : ${{ steps.resolve.outputs.target_branch }}
@@ -86,15 +86,15 @@ jobs:
8686 if [ -z "$LAST_TAG" ]; then
8787 COMMIT_COUNT=$(git rev-list --count --since="7 days ago" HEAD)
8888 else
89- COMMIT_COUNT=$(git rev-list --count ${LAST_TAG}..HEAD)
89+ COMMIT_COUNT=$(git rev-list --count " ${LAST_TAG}..HEAD" )
9090 fi
9191
9292 echo "Commits since ${LAST_TAG:-'(none)'}: $COMMIT_COUNT"
9393
9494 if [ "$COMMIT_COUNT" -gt 0 ] || [ "${{ inputs.force_build }}" = "true" ]; then
95- echo "has_changes=true" >> $GITHUB_OUTPUT
95+ echo "has_changes=true" >> " $GITHUB_OUTPUT"
9696 else
97- echo "has_changes=false" >> $GITHUB_OUTPUT
97+ echo "has_changes=false" >> " $GITHUB_OUTPUT"
9898 echo "No changes detected, skipping release"
9999 fi
100100
@@ -107,13 +107,13 @@ jobs:
107107 matrix :
108108 python-version : ["3.10", "3.11", "3.12"]
109109 steps :
110- - uses : actions/checkout@v4
110+ - uses : actions/checkout@v6
111111 with :
112112 fetch-depth : 0
113113 ref : ${{ needs.determine-release.outputs.target_branch }}
114114
115115 - name : Set up Python ${{ matrix.python-version }}
116- uses : actions/setup-python@v5
116+ uses : actions/setup-python@v6
117117 with :
118118 python-version : ${{ matrix.python-version }}
119119 cache : " pip"
@@ -145,13 +145,13 @@ jobs:
145145 if : needs.determine-release.outputs.has_changes == 'true'
146146 runs-on : ubuntu-latest
147147 steps :
148- - uses : actions/checkout@v4
148+ - uses : actions/checkout@v6
149149 with :
150150 fetch-depth : 0
151151 ref : ${{ needs.determine-release.outputs.target_branch }}
152152
153153 - name : Set up Python 3.13
154- uses : actions/setup-python@v5
154+ uses : actions/setup-python@v6
155155 with :
156156 python-version : " 3.13"
157157 cache : " pip"
@@ -177,14 +177,14 @@ jobs:
177177 outputs :
178178 version : ${{ steps.version.outputs.version }}
179179 steps :
180- - uses : actions/checkout@v4
180+ - uses : actions/checkout@v6
181181 with :
182182 fetch-depth : 0
183183 ref : ${{ needs.determine-release.outputs.target_branch }}
184184 token : ${{ secrets.GH_PAT }}
185185
186186 - name : Set up Python
187- uses : actions/setup-python@v5
187+ uses : actions/setup-python@v6
188188 with :
189189 python-version : " 3.11"
190190
@@ -241,7 +241,7 @@ jobs:
241241 VERSION="$BASE"
242242 fi
243243
244- echo "version=$VERSION" >> $GITHUB_OUTPUT
244+ echo "version=$VERSION" >> " $GITHUB_OUTPUT"
245245 echo "Publishing version: $VERSION"
246246
247247 sed -i "s/__version__ = \".*\"/__version__ = \"$VERSION\"/" datafog/__about__.py
@@ -322,7 +322,7 @@ jobs:
322322 if : needs.determine-release.outputs.release_type != 'stable' && inputs.dry_run != true
323323 runs-on : ubuntu-latest
324324 steps :
325- - uses : actions/checkout@v4
325+ - uses : actions/checkout@v6
326326
327327 - name : Prune old alpha releases (keep 7)
328328 if : needs.determine-release.outputs.release_type == 'alpha'
0 commit comments