diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 543e9d5..c66425b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: name: Test GH action - rasa init steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Create a new project run: | @@ -59,10 +59,10 @@ jobs: name: Test GH action - Rasa X Demo steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Checkout Rasa X Demo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: RasaHQ/rasa-x-demo path: rasa-x-demo @@ -107,10 +107,10 @@ jobs: needs: [test_action_x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Checkout Rasa Demo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: RasaHQ/rasa-demo path: rasa-demo @@ -147,10 +147,10 @@ jobs: name: Test GH action - Rasa Demo - ALL steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Checkout Rasa Demo - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: RasaHQ/rasa-demo path: rasa-demo diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d1cdf5..a29def6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: if: startsWith(github.event.ref, 'refs/tags') steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/README.md b/README.md index 78e83fc..3158223 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ jobs: steps: # Checks-out GitHub repository # more: https://github.com/actions/checkout - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Run rasa train and rasa test - name: My first step