Skip to content

Commit

Permalink
Updated GitHub Actions versions
Browse files Browse the repository at this point in the history
Downgraded the versions of several GitHub Actions used in the publish workflow. This includes actions for checkout, release creation, and asset upload. The changes aim to improve compatibility and stability of the CI/CD process.
  • Loading branch information
LuloDev committed Mar 7, 2024
1 parent 55a2172 commit b2f1276
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2.4.2
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand All @@ -30,7 +30,7 @@ jobs:
ls
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
- name: Create Release
uses: ncipollo/release-action@v1.1.0
uses: ncipollo/release-action@v1
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Upload zip file
id: upload_zip
uses: actions/upload-release-asset@v1.0.2
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -53,7 +53,7 @@ jobs:

- name: Upload package.json
id: upload_metadata
uses: actions/upload-release-asset@v1.0.2
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit b2f1276

Please sign in to comment.