Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/colima-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container-tests.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docscheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/master-build.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-build.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-tagged-image.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down