diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d079ad8..dbf0c95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: build_and_test_action: # make sure build/ci work properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: | npm install npm run all @@ -18,7 +18,7 @@ jobs: test_demo_app: # run the demo app's unit tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: | npm install npm run test:ci @@ -27,7 +27,7 @@ jobs: test_action_and_deploy_demo: # make sure the action works on a clean machine without building runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: 'Deploy demo app using action' uses: ./ with: diff --git a/README.md b/README.md index fc04273..cf88d6f 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: All things angular uses: AhsanAyaz/angular-deploy-gh-pages-actions@[version] ## replace by latest version without it you will see Expected format {org}/{repo}[/path]@ref. Actual 'AhsanAyaz/angular-deploy-gh-pages-actions',Input string was not in a correct format. with: diff --git a/action.yml b/action.yml index 609d459..9632c5d 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,5 @@ inputs: description: "Will not fail the step if anything fails" default: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'