diff --git a/.github/workflows/check-release-drift.yml b/.github/workflows/check-release-drift.yml index c29f32b..5dadb84 100644 --- a/.github/workflows/check-release-drift.yml +++ b/.github/workflows/check-release-drift.yml @@ -22,10 +22,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set Node.js 16 + - name: Set Node.js 20 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - name: Install dependencies run: npm i - name: Rebuild the dist/ directory @@ -43,4 +43,4 @@ jobs: if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist - path: dist/ \ No newline at end of file + path: dist/ diff --git a/action.yml b/action.yml index 028e73f..a2a8e88 100644 --- a/action.yml +++ b/action.yml @@ -35,5 +35,5 @@ inputs: description: the github access token to be used to access the config file using other github_configuration_* parameters. can differ from GITHUB_TOKEN. defaults to GITHUB_TOKEN required: false runs: - using: node16 + using: node20 main: dist/index.js