diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 8040fdd08..b3a5b4b7b 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -19,7 +19,7 @@ jobs: # - "==2.2.*" - "==4.2.*" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Pull the latest image to build, and avoid caching pull-only images. # (docker pull is faster than caching in most cases.) - run: | @@ -43,7 +43,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker compose pull - name: Build application run: make build diff --git a/.github/workflows/web_image_buil_and_push.yml b/.github/workflows/web_image_buil_and_push.yml index 6e3ca1e1c..a2c397784 100644 --- a/.github/workflows/web_image_buil_and_push.yml +++ b/.github/workflows/web_image_buil_and_push.yml @@ -11,7 +11,7 @@ jobs: if: github.event.pull_request.merged == true && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get version from script id: get_version