diff --git a/.github/workflows/colima-tests.yml b/.github/workflows/colima-tests.yml index 22ff7b0cc48..717e14a86ee 100644 --- a/.github/workflows/colima-tests.yml +++ b/.github/workflows/colima-tests.yml @@ -53,7 +53,7 @@ jobs: DDEV_TEST_USE_MUTAGEN: "true" GOTEST_SHORT: "true" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Homebrew cache/restore uses: actions/cache@v2 diff --git a/.github/workflows/container-tests.yml b/.github/workflows/container-tests.yml old mode 100755 new mode 100644 index 7559af04640..9af999310d4 --- a/.github/workflows/container-tests.yml +++ b/.github/workflows/container-tests.yml @@ -33,7 +33,7 @@ jobs: containers: [dbserver, webserver, others] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install Docker and deps (Linux) if: matrix.os == 'ubuntu-20.04' diff --git a/.github/workflows/docscheck.yml b/.github/workflows/docscheck.yml index 1f7cde5ce4f..6f85264be3d 100644 --- a/.github/workflows/docscheck.yml +++ b/.github/workflows/docscheck.yml @@ -25,7 +25,7 @@ jobs: name: Docs check (spellcheck, markdownlint) runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - uses: rojopolis/spellcheck-github-actions@0.21.1 name: Spellcheck - name: Run markdownlint on docs diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index fcb13bfabb8..57017a07369 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -21,7 +21,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: diff --git a/.github/workflows/master-build.yml b/.github/workflows/master-build.yml old mode 100755 new mode 100644 index 0162dbf3fdf..a1f79d80bba --- a/.github/workflows/master-build.yml +++ b/.github/workflows/master-build.yml @@ -23,7 +23,7 @@ jobs: SegmentKey: ${{ secrets.SEGMENTKEY }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # We need to get all branches and tags for git describe to work properly fetch-depth: 0 @@ -65,7 +65,7 @@ jobs: AUR_SSH_PRIVATE_KEY: ${{ secrets.AUR_SSH_PRIVATE_KEY }} SegmentKey: ${{ secrets.SEGMENTKEY }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Build and sign windows binaries and installer @@ -104,7 +104,7 @@ jobs: run: | brew install coreutils gnu-getopt jq pip3 install yq - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # We need to get all branches and tags for git describe to work properly fetch-depth: 0 @@ -155,7 +155,7 @@ jobs: CHOCOLATEY_API_KEY: ${{ secrets.CHOCOLATEY_API_KEY }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # We need to get all branches and tags for git describe to work properly fetch-depth: 0 diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml old mode 100755 new mode 100644 index d1163db7e1f..ae5e71d7703 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # We need to get all branches and tags for git describe to work properly fetch-depth: 0 diff --git a/.github/workflows/push-tagged-image.yml b/.github/workflows/push-tagged-image.yml old mode 100755 new mode 100644 index a9efbeabdcb..6514a0588cc --- a/.github/workflows/push-tagged-image.yml +++ b/.github/workflows/push-tagged-image.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v1 - name: Set up Docker Buildx diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d2775106ccc..442bc84815d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,7 +48,7 @@ jobs: DDEV_TEST_USE_MUTAGEN: ${{ matrix.mutagen }} DDEV_TEST_NO_BIND_MOUNTS: ${{ matrix.no-bind-mounts }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # - name: GOTEST_SHORT setup - use "true" except for testfullsitesetup # run: |