@@ -20,14 +20,14 @@ jobs:
2020 # Generating a GitHub token, so that PRs and tags created by
2121 # the release-plz-action can trigger actions workflows.
2222 - name : Generate GitHub token
23- uses : actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3
23+ uses : actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
2424 id : generate-token
2525 with :
2626 app-id : ${{ secrets.RELEASE_BOT_APP_ID }}
2727 private-key : ${{ secrets.RELEASE_BOT_APP_PRIVATE_KEY }}
2828
2929 - id : release
30- uses : GoogleCloudPlatform/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5
30+ uses : GoogleCloudPlatform/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5.0.0
3131 with :
3232 token : ${{ steps.generate-token.outputs.token }}
3333 command : manifest
@@ -71,10 +71,10 @@ jobs:
7171
7272 steps :
7373 - name : ⏬ Checkout
74- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
74+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
7575
7676 - name : 🔽 Install dotnet
77- uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5
77+ uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
7878
7979 - name : 🔍 Print dotnet info
8080 run : dotnet --info
@@ -89,20 +89,20 @@ jobs:
8989 run : dotnet pack --configuration Release --no-build
9090
9191 - name : 🔼 Upload packages as artifact
92- uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
92+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9393 with :
9494 name : nuget
9595 path : artifacts/nuget/
9696
9797 - name : 🔼 Upload global.json as artifact
98- uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
98+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9999 with :
100100 name : global-json
101101 path : global.json
102102
103103 - name : 🔼 Upload packages as github release asset
104104 if : needs.release_please.outputs.upload_url != ''
105- uses : shogo82148/actions-upload-release-asset@ee2ae851dc5d938b90075b3ef12c540abfd1ee72 # v1
105+ uses : shogo82148/actions-upload-release-asset@ee2ae851dc5d938b90075b3ef12c540abfd1ee72 # v1.10.1
106106 with :
107107 upload_url : ${{ needs.release_please.outputs.upload_url }}
108108 asset_path : artifacts/nuget/*
@@ -122,18 +122,18 @@ jobs:
122122
123123 steps :
124124 - name : 🔽 Download nuget artifact
125- uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
125+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
126126 with :
127127 name : nuget
128128 path : nuget
129129
130130 - name : 🔽 Download global-json artifact
131- uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
131+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
132132 with :
133133 name : global-json
134134
135135 - name : 🔽 Install dotnet
136- uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5
136+ uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
137137
138138 - name : 🔼 Publish package to nuget
139139 run : dotnet nuget push --force-english-output --api-key '${{ secrets.GITHUB_TOKEN }}' --source 'https://nuget.pkg.github.com/YoloDev/index.json' --skip-duplicate "nuget/*.nupkg"
@@ -151,18 +151,18 @@ jobs:
151151
152152 steps :
153153 - name : 🔽 Download nuget artifact
154- uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
154+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
155155 with :
156156 name : nuget
157157 path : nuget
158158
159159 - name : 🔽 Download global-json artifact
160- uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
160+ uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
161161 with :
162162 name : global-json
163163
164164 - name : 🔽 Install dotnet
165- uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5
165+ uses : actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2 # v5.3.0
166166
167167 - name : 🔼 Publish package to nuget
168168 run : dotnet nuget push --force-english-output --api-key '${{ secrets.NUGET_API_KEY }}' --source '${{ secrets.NUGET_FEED }}' --skip-duplicate "nuget/*.nupkg"
0 commit comments