diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index d9ae193..9c07270 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -17,6 +17,11 @@ jobs: - name: Check out code uses: actions/checkout@v3 + - name: Set up node20 + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Run npm run: npm install && npm run all diff --git a/action.yml b/action.yml index a3d06c3..d369e62 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: required: false default: ${{ github.token }} runs: - using: 'node18' + using: 'node20' main: 'dist/index.js' branding: icon: 'box' diff --git a/package.json b/package.json index fd2c6ce..04d4348 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "delrel", "description": "Delete a release by tag name. It supports GitHub Enterprise.", - "version": "0.17.0", + "version": "0.18.0", "author": "Chris Burkert (https://github.com/cb80)", "license": "MIT", "main": "lib/main.js",