Skip to content

Commit

Permalink
Revert dependabot to daily checks (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome authored May 19, 2021
1 parent a77c40b commit c1acec6
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 30 deletions.
13 changes: 6 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,39 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- "ciarams87"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- package-ecosystem: "docker"
directory: "/build"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- package-ecosystem: "docker"
directory: "/tests/docker"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- "vepatel"
- package-ecosystem: "pip"
directory: "/tests"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- "vepatel"
- package-ecosystem: "pip"
directory: "/perf-tests"
schedule:
interval: weekly
interval: daily
reviewers:
- "nginxinc/kic"
- "vepatel"
22 changes: 11 additions & 11 deletions .github/workflows/edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPATH: ${{ env.GOPATH }}
- name: Store Artifacts in Cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
run: |
echo "::set-output name=nginx_version::$(cat build/Dockerfile | grep -m1 "FROM nginx:" | cut -d":" -f2 | cut -d" " -f1)"
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -115,7 +115,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
run: |
echo "::set-output name=nginx_version::$(cat build/Dockerfile | grep -m1 "FROM nginx:" | cut -d":" -f2 | cut -d" " -f1)"
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -256,7 +256,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -382,7 +382,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -439,7 +439,7 @@ jobs:
with:
driver-opts: network=host
- name: Docker build cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -548,7 +548,7 @@ jobs:
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
echo "::set-output name=nginx_version::$(cat build/Dockerfile | grep -m1 "FROM nginx:" | cut -d":" -f2 | cut -d" " -f1)"
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -561,7 +561,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Lint Code
uses: golangci/golangci-lint-action@v2.5.2
uses: golangci/golangci-lint-action@v2
with:
args: --timeout ${{ env.GOLANGCI_TIMEOUT }}
14 changes: 7 additions & 7 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOPATH: ${{ env.GOPATH }}
- name: Store Artifacts in Cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: |
echo "::set-output name=nginx_version::$(cat build/Dockerfile | grep -m1 "FROM nginx:" | cut -d":" -f2 | cut -d" " -f1)"
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -150,7 +150,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -313,7 +313,7 @@ jobs:
with:
driver-opts: network=host
- name: Cache Docker layers
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down Expand Up @@ -443,7 +443,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/dist
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -452,7 +452,7 @@ jobs:
with:
driver-opts: network=host
- name: Docker build cache
uses: actions/cache@v2.1.5
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Fetch Cached Artifacts
uses: actions/cache@v2.1.4
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/nginx-ingress
key: nginx-ingress-${{ github.run_id }}-${{ github.run_number }}
Expand All @@ -464,7 +464,7 @@ jobs:
with:
driver-opts: network=host
- name: Docker build cache
uses: actions/cache@v2.1.4
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
destination_branch: "master"
ssh_private_key: ${{ secrets.SYNC_SSH_PRIVATE_KEY }}

# This job open a PR to sync the generated CRD files across to nginx-ingress-operator
# This job open a PR to sync the generated CRD files across to nginx-ingress-operator
# (see .github/sync.yml for config details)
crds-sync:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Sync Labels
uses: micnncim/action-label-syncer@v1.2.0
uses: micnncim/action-label-syncer@v1
with:
repository: ${{ matrix.repo }}
token: ${{ secrets.NGINX_PAT }}
Expand Down

0 comments on commit c1acec6

Please sign in to comment.