From 23bd91e7cd484903a86ea72b151513e8937f3b7a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 28 Dec 2022 19:04:39 +0000 Subject: [PATCH] Update actions/checkout action to v3 --- .github/workflows/deployment.yml | 2 +- .github/workflows/integration.yml | 2 +- .github/workflows/staging.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 53e7f47..23ec97a 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and Test uses: actions/setup-node@v1 with: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index d74e7aa..e5868d7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and Test uses: actions/setup-node@v1 with: diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 5cff552..ecc1cec 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build and Test uses: actions/setup-node@v1 with: -- 2.43.4