From 642938afe08c449e1cc1de581987a88d3c041949 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Wed, 19 Oct 2022 11:28:31 +0200 Subject: [PATCH] Upgrade "actions/checkout" to non-deprecated version --- .github/workflows/brakeman-analysis.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/linters.yml | 2 +- .github/workflows/mapi.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/brakeman-analysis.yml b/.github/workflows/brakeman-analysis.yml index 97882628ea..934120590d 100644 --- a/.github/workflows/brakeman-analysis.yml +++ b/.github/workflows/brakeman-analysis.yml @@ -23,7 +23,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Customize the ruby version depending on your needs - name: Setup Ruby diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5da8c4c05d..2c66d8567f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: - "engines/*/spec" fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 @@ -92,7 +92,7 @@ jobs: POSTGRES_USER: ofn POSTGRES_PASSWORD: f00d steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index adabb59404..a5f6a5d866 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: prettier uses: EPMatt/reviewdog-action-prettier@v1 with: diff --git a/.github/workflows/mapi.yml b/.github/workflows/mapi.yml index bc4c43b6dc..db4fe5cd36 100644 --- a/.github/workflows/mapi.yml +++ b/.github/workflows/mapi.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - run: docker/build - run: docker-compose up --detach - run: until curl -f -s http://localhost:3000; do echo "waiting for api server"; sleep 1; done