Skip to content

Commit

Permalink
build: fix build configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
yinzara committed Nov 26, 2024
1 parent cb8db1b commit 93f463f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -25,7 +25,7 @@ jobs:
exit 1
fi
- name: Install Protoc
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.RENOVATE_TOKEN }}
- name: Test protoc generation
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- uses: JS-DevTools/npm-publish@v1
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
- run: echo "🍏 This job's status is ${{ job.status }}."
4 changes: 2 additions & 2 deletions .github/workflows/renovatebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.2.2
- name: Self-hosted Renovate
uses: renovatebot/github-action@v34.82.0
uses: renovatebot/github-action@v41.0.3
with:
configurationFile: .renovaterc.json5
token: ${{ secrets.RENOVATE_TOKEN }}

0 comments on commit 93f463f

Please sign in to comment.