Skip to content

Commit

Permalink
Merge branch 'main' into renovate/main-actions-cache-digest
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l authored Oct 10, 2024
2 parents 5db32b2 + 4493e2c commit c424b15
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 17 deletions.
22 changes: 12 additions & 10 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
],
"matchUpdateTypes": [
"minor",
"patch"
"patch",
"digest"
],
"baseBranches": [
"main"
Expand All @@ -79,7 +80,8 @@
"go"
],
"matchUpdateTypes": [
"patch"
"patch",
"digest"
],
"baseBranches": [
"/^release-1\\..*/",
Expand All @@ -95,8 +97,8 @@
]
},
{
"description": "ginkgo: minor and patch updates in main",
"enabled": true,
"description": "ginkgo: minor and patch updates in main (disabled until we support Go 1.22+, which is required since ginkgo 2.20.2)",
"enabled": false,
"groupName": "ginkgo main",
"matchDatasources": [
"go"
Expand All @@ -114,8 +116,8 @@
]
},
{
"description": "ginkgo: patch updates only in 1.y",
"enabled": true,
"description": "ginkgo: patch updates only in 1.y (disabled until we support Go 1.22+, which is required since ginkgo 2.20.2)",
"enabled": false,
"groupName": "ginkgo 1.y",
"matchDatasources": [
"go"
Expand All @@ -133,8 +135,8 @@
]
},
{
"description": "gomega: minor and patch updates in main",
"enabled": true,
"description": "gomega: minor and patch updates in main (disabled until we support Go 1.22+, which is required since gomega 1.34.2)",
"enabled": false,
"groupName": "gomega main",
"matchDatasources": [
"go"
Expand All @@ -152,8 +154,8 @@
]
},
{
"description": "gomega: patch updates only in 1.y",
"enabled": true,
"description": "gomega: patch updates only in 1.y (disabled until we support Go 1.22+, which is required since gomega 1.34.2)",
"enabled": false,
"groupName": "gomega 1.y",
"matchDatasources": [
"go"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/next-container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
packages: write
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
CONTAINER_ENGINE: podman
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 # default branch will be checked out by default on scheduled workflows
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 # default branch will be checked out by default on scheduled workflows
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-bundle-diff-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0
repository: ${{github.event.pull_request.head.repo.full_name}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
run: make gosec

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # v3
uses: github/codeql-action/upload-sarif@c36620d31ac7c881962c3d9dd939c40ec9434f2b # v3
with:
# Path to SARIF file relative to the root of the repository
sarif_file: gosec.sarif
2 changes: 1 addition & 1 deletion .github/workflows/renovate-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
name: Renovate Config Validator
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Validate config
# See https://docs.renovatebot.com/config-validation/
run: |
Expand Down

0 comments on commit c424b15

Please sign in to comment.