Skip to content

Commit fe127f9

Browse files
authored
Merge branch 'main' into feat/sslverify-jwks
2 parents 0f6b9ce + ae2d344 commit fe127f9

26 files changed

+260
-175
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ documentation:
2929
- head-branch: ['^docs?/']
3030

3131
dependencies:
32-
- head-branch: ['^deps?/', '^dependabot/', '^renovate/', 'pre-commit-ci-update-config']
32+
- head-branch: ['^deps?/', '^dependabot/', '^renovate/', '^mend/', 'pre-commit-ci-update-config']
3333

3434
helm_chart:
3535
- head-branch: ['^helm/', '^chart/']

.github/scripts/copy-images.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ set -eo pipefail
66
export ROOTDIR=$(git rev-parse --show-toplevel || echo ".")
77

88
SKOPEO_BIN=skopeo
9+
910
if [ -n "$CI" ]; then
10-
SKOPEO_BIN="docker run --rm -v $HOME/.docker/config.json:/tmp/auth.json $(grep skopeo "${ROOTDIR}/tests/Dockerfile" | grep FROM | cut -d ' ' -f 2)"
11+
SKOPEO_IMAGE=quay.io/skopeo/stable
12+
# renovate: datasource=docker depName=quay.io/skopeo/stable
13+
SKOPEO_VERSION=v1.20.0-immutable
14+
SKOPEO_BIN="docker run --rm -v $HOME/.docker/config.json:/tmp/auth.json ${SKOPEO_IMAGE}:${SKOPEO_VERSION}"
1115
fi
1216

1317
## Setup inputs

.github/scripts/exclude_ci_files.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.github/actionlint.yaml
2-
.github/dependabot.yml
32
.github/labeler.yml
43
.github/PULL_REQUEST_TEMPLATE.md
54
.github/release.yml
@@ -26,8 +25,6 @@
2625
.github/workflows/cherry-pick.yml
2726
.github/workflows/codeql-analysis.yml
2827
.github/workflows/create-release-branch.yml
29-
.github/workflows/dependabot-auto-merge.yml
30-
.github/workflows/dependabot-hugo.yml
3128
.github/workflows/dependency-review.yml
3229
.github/workflows/dockerhub-description.yml
3330
.github/workflows/docs-build-push.yml

.github/workflows/build-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
if: ${{ inputs.force }}
102102

103103
- name: Store Artifacts in Cache
104-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
104+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
105105
with:
106106
path: ${{ github.workspace }}/dist
107107
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
echo "full-build: ${{ inputs.full-build }}"
159159
160160
- name: Fetch Cached Artifacts
161-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
161+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
162162
with:
163163
path: ${{ github.workspace }}/dist
164164
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-plus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
echo "full-build: ${{ inputs.full-build }}"
169169
170170
- name: Fetch Cached Artifacts
171-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
171+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
172172
with:
173173
path: ${{ github.workspace }}/dist
174174
key: nginx-ingress-${{ inputs.go-md5 }}

.github/workflows/build-single-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Fetch Cached Binary Artifacts
9696
id: binary-cache
97-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
97+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
9898
with:
9999
path: ${{ github.workspace }}/dist
100100
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -119,7 +119,7 @@ jobs:
119119
if: ${{ steps.binary-cache.outputs.binary_cache_hit != 'true' }}
120120

121121
- name: Store Artifacts in Cache
122-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
122+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
123123
with:
124124
path: ${{ github.workspace }}/dist
125125
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
122122
- name: Fetch Cached Binary Artifacts
123123
id: binary-cache
124-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
124+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
125125
with:
126126
path: ${{ github.workspace }}/dist
127127
key: nginx-ingress-${{ steps.vars.outputs.go_code_md5 }}
@@ -459,7 +459,7 @@ jobs:
459459
if: ${{ ( needs.checks.outputs.forked_workflow == 'false' || needs.checks.outputs.docs_only == 'false' ) && steps.stable_exists.outputs.exists != 'true' }}
460460

461461
- name: Fetch Cached Artifacts
462-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
462+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
463463
with:
464464
path: ${{ github.workspace }}/dist
465465
key: nginx-ingress-${{ needs.checks.outputs.go_code_md5 }}

.github/workflows/dependabot-auto-merge.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)