Skip to content

Commit 0c9ee23

Browse files
committed
2 parents 6b4b459 + 1bb2059 commit 0c9ee23

30 files changed

Lines changed: 60 additions & 509 deletions

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
"features": {
66
"ghcr.io/devcontainers/features/docker-in-docker:2": {
7-
"version": "2.82.1",
7+
"version": "",
88
"dockerDashComposeVersion": "v2"
99
},
1010
"ghcr.io/devcontainers/features/github-cli:1": {
11-
"version": "2.82.1"
11+
"version": "2.83.2"
1212
}
1313
},
1414

.devcontainer/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ echo "================================"
1010

1111
# Install yq (YAML processor) - required for JCasc configuration
1212
echo "📦 Installing yq YAML processor..."
13-
YQ_VERSION="${YQ_VERSION:-v4.48.1}"
13+
YQ_VERSION="${YQ_VERSION:-v4.49.2}"
1414
YQ_URL="https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64"
1515

1616
# Try wget first, fall back to curl if unavailable

.github/dependabot.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
33

44
version: 2
5-
# Note: GitPod support is legacy (free tier sunset). Migrated to GitHub Codespaces.
6-
# Codespaces uses devcontainer.json which Dependabot cannot monitor (not a Dockerfile).
5+
# Note: GitHub Codespaces uses devcontainer.json which Dependabot cannot monitor (not a Dockerfile).
76
# Codespaces dependencies (yq, devcontainer features) are tracked by UpdateCLI.
87
# See updatecli/updatecli.d/codespaces.yaml for automated updates.
98

@@ -68,12 +67,3 @@ updates:
6867
schedule:
6968
interval: weekly
7069
open-pull-requests-limit: 10
71-
72-
# GitPod (legacy) - disabled, not actively maintained
73-
- package-ecosystem: docker
74-
directory: "./.gitpod"
75-
schedule:
76-
interval: weekly
77-
open-pull-requests-limit: 0
78-
ignore:
79-
- dependency-name: "gitpod/workspace-full"

.github/workflows/anchore.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Check out the code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: Build the Docker image
3838
run: cd ./dockerfiles/ && docker build . --file Dockerfile --tag localbuild/testimage:latest
3939

4040
- name: Run the Anchore Grype scan action
41-
uses: anchore/scan-action@568b89d27fc18c60e56937bff480c91c772cd993
41+
uses: anchore/scan-action@40a61b52209e9d50e87917c5b901783d546b12d0
4242
id: scan
4343
with:
4444
path: "."

.github/workflows/github-docker-registry-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Checkout
3737
# This step checks out the repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0
4141

.github/workflows/hadolint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434

3535
- name: Run hadolint scanning on the controller Dockerfile
3636
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5

.github/workflows/plugin_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Configure git & gh
2121
run: |

.github/workflows/test-jenkins.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
BRANCH_SUFFIX: clean-up
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0 # Fetch all history for all branches and tags.
2929

@@ -269,7 +269,7 @@ jobs:
269269

270270
steps:
271271
- name: Checkout repository
272-
uses: actions/checkout@v5
272+
uses: actions/checkout@v6
273273

274274
- name: Set up and start Docker Compose
275275
run: |

.github/workflows/updatecli.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
steps:
2020
# This step checks out the repository using the checkout action
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
# This step installs Updatecli in the runner using the updatecli-action
2525
- name: Install Updatecli in the runner
26-
uses: updatecli/updatecli-action@v2.94.0
26+
uses: updatecli/updatecli-action@v2.97.0
2727

2828
# This step runs Updatecli in Dry Run mode
2929
# It uses the "diff" command of updatecli with the specified config and values files

.gitpod.yml

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

0 commit comments

Comments
 (0)