Skip to content

Commit

Permalink
ci; update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Oct 4, 2024
1 parent 3d185ea commit fc37a76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
docker exec $CONTAINER_ID sh -c 'echo "secure_file_priv=/var/lib/mysql-files" >> /etc/mysql/mariadb.conf.d/settings.cnf'
docker kill --signal=SIGHUP $CONTAINER_ID
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
Expand All @@ -43,7 +43,7 @@ jobs:
run: sudo npm test
env:
CI: true
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.pkg-cache/
key: ${{ runner.os }}-pkg
Expand All @@ -60,13 +60,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Upload release artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-artifacts
path: bin/*
if-no-files-found: error
- id: release-name
uses: actions/github-script@v6
uses: actions/github-script@v7
env:
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
with:
Expand All @@ -84,7 +84,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Delete nightly release
uses: sgpublic/delete-release-action@v1.1
uses: sgpublic/delete-release-action@v1.2
with:
pre-release-drop: true
pre-release-keep-count: -1
Expand Down

0 comments on commit fc37a76

Please sign in to comment.