1313 tag : ${{ steps.tag_label.outputs.tag }}
1414 changelog : ${{ steps.tag_raw.outputs.changelog }}
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 with :
1818 persist-credentials : false
1919 fetch-depth : 0
3636 Changelog :
3737 runs-on : ubuntu-latest
3838 steps :
39- - uses : actions/checkout@v3
39+ - uses : actions/checkout@v4
4040 with :
4141 persist-credentials : false
4242 fetch-depth : 0
5757 echo "$USER $PROJECT"
5858 github_changelog_generator --user "$USER" --project "$PROJECT" --no-unreleased
5959 - name : ' Upload Artifact Changelog'
60- uses : actions/upload-artifact@v3
60+ uses : actions/upload-artifact@v4
6161 with :
6262 name : changelog-artifact
6363 path : CHANGELOG.md
7070 version_path : ${{ steps.update_version.outputs.version_path }}
7171 version_dir : ${{ steps.update_version.outputs.version_dir }}
7272 steps :
73- - uses : actions/checkout@v3
73+ - uses : actions/checkout@v4
7474 - name : ' Update _version.py'
7575 id : update_version
7676 env :
8282 echo "version_path=$VERSION_PATH" >> "$GITHUB_OUTPUT"
8383 echo "version_dir=$VERSION_DIR" >> "$GITHUB_OUTPUT"
8484 - name : ' Upload Artifact Version'
85- uses : actions/upload-artifact@v3
85+ uses : actions/upload-artifact@v4
8686 with :
8787 name : version-artifact
8888 path : ${{ steps.update_version.outputs.version_path }}
@@ -93,17 +93,17 @@ jobs:
9393 steps :
9494 # Get Data
9595 - name : ' Checkout'
96- uses : actions/checkout@v3
96+ uses : actions/checkout@v4
9797 with :
9898 persist-credentials : false
9999 fetch-depth : 0
100100 - name : ' Download Artifact Version'
101- uses : actions/download-artifact@v3
101+ uses : actions/download-artifact@v4
102102 with :
103103 name : version-artifact
104104 path : ${{ needs.Version.outputs.version_dir }}
105105 - name : ' Download Artifact Changelog'
106- uses : actions/download-artifact@v3
106+ uses : actions/download-artifact@v4
107107 with :
108108 name : changelog-artifact
109109 # Commit
@@ -133,7 +133,7 @@ jobs:
133133 needs : [Commit, TagRaw]
134134 runs-on : ubuntu-latest
135135 steps :
136- - uses : actions/checkout@v3
136+ - uses : actions/checkout@v4
137137 with :
138138 persist-credentials : false
139139 fetch-depth : 0
@@ -158,9 +158,9 @@ jobs:
158158 shell : bash -l {0} # activate env conda
159159 steps :
160160 - name : ' Checkout'
161- uses : actions/checkout@v3
161+ uses : actions/checkout@v4
162162 - name : ' Deploying miniconda'
163- uses : conda-incubator/setup-miniconda@v2
163+ uses : conda-incubator/setup-miniconda@v3
164164 with :
165165 miniconda-version : " latest"
166166 environment-file : recipes/workflow.yaml
@@ -178,7 +178,7 @@ jobs:
178178 filename=$(find ${{ env.dirbuild }} | head -n 1)
179179 echo "asset=$filename" >> "$GITHUB_OUTPUT"
180180 - name : ' Upload Artifact Package'
181- uses : actions/upload-artifact@v3
181+ uses : actions/upload-artifact@v4
182182 with :
183183 name : package-conda-artifact
184184 path : ${{ steps.identify_asset.outputs.asset }}
@@ -190,7 +190,7 @@ jobs:
190190 runs-on : ubuntu-latest
191191 steps :
192192 - name : ' Download Artifact Package - Pip'
193- uses : actions/download-artifact@v3
193+ uses : actions/download-artifact@v4
194194 with :
195195 name : package-conda-artifact
196196 - name : ' Create Release'
0 commit comments