diff options
author | 2022-10-10 10:02:36 -0400 | |
---|---|---|
committer | 2022-10-10 10:02:36 -0400 | |
commit | 8d7ce0c1551482c1b274293fc85f15baa571753e (patch) | |
tree | c5c6fa01b16c059602eebede41e7469f3608fc38 | |
parent | d55490e06b93b20f9ef5663203e4f5744633c491 (diff) | |
download | coredns-8d7ce0c1551482c1b274293fc85f15baa571753e.tar.gz coredns-8d7ce0c1551482c1b274293fc85f15baa571753e.tar.zst coredns-8d7ce0c1551482c1b274293fc85f15baa571753e.zip |
build(deps): bump actions/checkout from 3 to 3.1.0 (#5677)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 3.1.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/depsreview.yml | 2 | ||||
-rw-r--r-- | .github/workflows/docker.yml | 2 | ||||
-rw-r--r-- | .github/workflows/go.coverage.yml | 2 | ||||
-rw-r--r-- | .github/workflows/go.fmt.yml | 2 | ||||
-rw-r--r-- | .github/workflows/go.test.yml | 8 | ||||
-rw-r--r-- | .github/workflows/go.tidy.yml | 2 | ||||
-rw-r--r-- | .github/workflows/golangci-lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/make.doc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/reviewdog.yml | 4 | ||||
-rw-r--r-- | .github/workflows/scorecards.yml | 2 | ||||
-rw-r--r-- | .github/workflows/whitespace.yml | 2 | ||||
-rw-r--r-- | .github/workflows/yamllint.yml | 2 |
13 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4f867855d..84c6ddcde 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Initialize CodeQL uses: github/codeql-action/init@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 diff --git a/.github/workflows/depsreview.yml b/.github/workflows/depsreview.yml index 08b8bbc8b..9580edffb 100644 --- a/.github/workflows/depsreview.yml +++ b/.github/workflows/depsreview.yml @@ -9,6 +9,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: 'Dependency Review' uses: actions/dependency-review-action@375c5370086bfff256c37f8beec0f437e2e72ae1 diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 97742575a..a4828d15e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -20,7 +20,7 @@ jobs: DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} RELEASE: ${{ github.event.inputs.release || github.event.release.tag_name }} steps: - - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Build Docker Images run: make VERSION=${RELEASE:1} DOCKER=coredns -f Makefile.docker release - name: Show Docker Images diff --git a/.github/workflows/go.coverage.yml b/.github/workflows/go.coverage.yml index 123d8cc18..737cdf1a1 100644 --- a/.github/workflows/go.coverage.yml +++ b/.github/workflows/go.coverage.yml @@ -15,7 +15,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Build run: go build -v ./... diff --git a/.github/workflows/go.fmt.yml b/.github/workflows/go.fmt.yml index b93e48c33..faa44835a 100644 --- a/.github/workflows/go.fmt.yml +++ b/.github/workflows/go.fmt.yml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Fmt run: | diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index 36a70cd5c..2aa072dd3 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -15,7 +15,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Build run: go build -v ./... @@ -37,7 +37,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Build run: go build -v ./... @@ -56,7 +56,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Build run: go build -v ./... @@ -74,7 +74,7 @@ jobs: run: sudo apt-get install make curl - name: Check out code - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Test Makefile.release run: make GITHUB_ACCESS_TOKEN=x -n release github-push -f Makefile.release diff --git a/.github/workflows/go.tidy.yml b/.github/workflows/go.tidy.yml index 5d5d5327b..05b01c6fa 100644 --- a/.github/workflows/go.tidy.yml +++ b/.github/workflows/go.tidy.yml @@ -19,7 +19,7 @@ jobs: id: go - name: Checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Tidy run: | diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 6b1a3ebf3..1f3af3639 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f with: go-version: '1.19.0' - - uses: actions/checkout@v3 + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: golangci-lint uses: golangci/golangci-lint-action@v3.2.0 with: diff --git a/.github/workflows/make.doc.yml b/.github/workflows/make.doc.yml index 33fcf0fbe..13b49acab 100644 --- a/.github/workflows/make.doc.yml +++ b/.github/workflows/make.doc.yml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Setup Go uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index a591dff3c..1f0e0369f 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -12,7 +12,7 @@ jobs: name: Go Fmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - run: find . -not -path '*/\.git/*' -type f -name '*.go' -exec gofmt -s -w {} \+ - uses: reviewdog/action-suggester@8f83d27e749053b2029600995c115026a010408e @@ -20,6 +20,6 @@ jobs: name: Whitespace runs-on: ubuntu-latest steps: - - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - run: find . -not -path '*/\.git/*' -type f -not -name '*.go' -exec sed -i 's/[[:space:]]\{1,\}$//' {} \+ - uses: reviewdog/action-suggester@8f83d27e749053b2029600995c115026a010408e diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml index 5d6663822..eedbe718e 100644 --- a/.github/workflows/scorecards.yml +++ b/.github/workflows/scorecards.yml @@ -23,7 +23,7 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 with: persist-credentials: false diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml index 4f9a97f7b..709dfd045 100644 --- a/.github/workflows/whitespace.yml +++ b/.github/workflows/whitespace.yml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: Remove Trailing Whitespaces run: | diff --git a/.github/workflows/yamllint.yml b/.github/workflows/yamllint.yml index 25bd099ac..079189450 100644 --- a/.github/workflows/yamllint.yml +++ b/.github/workflows/yamllint.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout' - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - name: 'Yamllint' uses: karancode/yamllint-github-action@dd59165b84d90d37fc919c3c7dd84c7e37cd6bfb with: |