Skip to content

Commit d8df326

Browse files
committed
2 parents fcf2edb + bfbbb26 commit d8df326

File tree

24 files changed

+86
-86
lines changed

24 files changed

+86
-86
lines changed

.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@v4
35+
uses: actions/checkout@v5
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@2c901ab7378897c01b8efaa2d0c9bf519cc64b9e
41+
uses: anchore/scan-action@1638637db639e0ade3258b51db49a9a137574c3e
4242
id: scan
4343
with:
4444
path: "."

.github/workflows/codacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
steps:
3636
# Checkout the repository to the GitHub Actions runner
3737
- name: Checkout code
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939

4040
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
4141
- name: Run Codacy Analysis CLI
42-
uses: codacy/codacy-analysis-cli-action@97bf5df3c09e75f5bcd72695998f96ebd701846e
42+
uses: codacy/codacy-analysis-cli-action@562ee3e92b8e92df8b67e0a5ff8aa8e261919c08
4343
with:
4444
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
4545
# You can also omit the token and run the tools that support default configurations

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Checkout
2828
# This step checks out the repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0
3232

.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@v4
33+
uses: actions/checkout@v5
3434

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

.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@v4
18+
uses: actions/checkout@v5
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@v4
26+
uses: actions/checkout@v5
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@v4
272+
uses: actions/checkout@v5
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@v4
22+
uses: actions/checkout@v5
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.84.0
26+
uses: updatecli/updatecli-action@v2.90.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/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed.
22

33
# We start from the Gitpod full workspace image which includes a broad range of development tools.
4-
FROM gitpod/workspace-full:2025-06-04-16-54-45
4+
FROM gitpod/workspace-full:2025-08-25-18-17-39
55

66
# The RUN command executes a series of commands in the new layer of the image and commits the results.
77
# The following commands are executed:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ Please let us know the following details when you open an issue:
6868

6969
The tutorials have been tested with:
7070
- Docker version `28.0.4`
71-
- Docker Compose version `2.36.0`
71+
- Docker Compose version `2.38.2`

build-docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
timeout: 10s
6464
retries: 5
6565
default_agent:
66-
image: jenkins/ssh-agent:6.18.0-jdk21
66+
image: jenkins/ssh-agent:7.0.0-jdk21
6767
container_name: desktop-jenkins_agent-1
6868
profiles:
6969
- default

0 commit comments

Comments
 (0)