Skip to content

Commit 4172adc

Browse files
committed
Fix node.js 20 warning by updating actions
1 parent 5eefb6d commit 4172adc

1 file changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,12 @@ jobs:
9797
git commit -am "Update main branch for the ${{ steps.update-repo.outputs.release-version }} release"
9898
9999
- name: Push Changes
100-
uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839
101-
with:
102-
ssh: true
103-
atomic: true
104-
branch: main
105-
repository: ${{ github.repository }}
100+
shell: bash
101+
run: |
102+
git push origin HEAD:main
106103
107104
- name: Upload Release Details
108-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v7
109106
with:
110107
name: release-details
111108
path: |
@@ -137,7 +134,7 @@ jobs:
137134
git config --global commit.gpgsign false
138135
139136
- name: Download Release Details
140-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v7
141138
with:
142139
name: release-details
143140

@@ -232,9 +229,6 @@ jobs:
232229
git commit --allow-empty -am "Update README.md with ${VERSION} release sha256sum"
233230
234231
- name: Push Changes
235-
uses: ad-m/github-push-action@b87afee92c6e70ea888be6203a3e9426fda49839
236-
with:
237-
ssh: true
238-
atomic: true
239-
branch: main
240-
repository: ${{ github.repository }}
232+
shell: bash
233+
run: |
234+
git push origin HEAD:main

0 commit comments

Comments
 (0)