diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9b7fb51929..4eace6e5bb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ jobs: name: Functional Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: actions/cache@v2.1.6 with: path: | @@ -38,7 +38,7 @@ jobs: name: 0L tools Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: actions/cache@v2.1.6 with: path: | @@ -67,7 +67,7 @@ jobs: name: E2E Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: actions/cache@v2.1.6 with: path: | @@ -96,7 +96,7 @@ jobs: # runs-on: ubuntu-latest # # needs: compile # steps: - # - uses: actions/checkout@v2 + # - uses: actions/checkout@v3.1.0 # # Uses the cache done in the parent job (compile) with the same "key" # - uses: actions/cache@v2.1.6 # with: @@ -112,7 +112,7 @@ jobs: # runs-on: ubuntu-latest # # needs: compile # steps: -# - uses: actions/checkout@v2 +# - uses: actions/checkout@v3.1.0 # # Uses the cache done in the parent job (compile) with the same "key" # - uses: actions/cache@v2.1.6 # with: @@ -128,7 +128,7 @@ jobs: # name: Compile and Cache # runs-on: ubuntu-latest # steps: - # - uses: actions/checkout@v2 + # - uses: actions/checkout@v3.1.0 # # Sets up a cache to be used on other subsequent jobs. # # subsequent jobs must use the "needs" field and reference this job.id "compile". # - uses: actions/cache@v2.1.6 diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 190a7bb91a..3c7108f6d6 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -15,7 +15,7 @@ jobs: NODE_ENV: test TEST: y steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: Get branch names id: branch-name uses: tj-actions/branch-names@v4 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e9486505b..e8929e94e6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: runs-on: self-hosted steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: actions-rs/toolchain@v1.0.7 - uses: hecrj/setup-rust-action@v1 with: