Skip to content

Commit aee426b

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5eeaa72 commit aee426b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.github/workflows/ai-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
working-directory: ./ai
1010
git_hash: $(git rev-parse --short "$GITHUB_SHA")
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Build the AI Docker image
1414
run: docker build . --file Dockerfile --tag ai:${{ env.git_hash }}
1515
working-directory: ${{ env.working-directory}}

.github/workflows/api-docker-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
working-directory: ./api
1010
git_hash: $(git rev-parse --short "$GITHUB_SHA")
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Build the API Docker image
1414
run: docker build . --file Dockerfile --tag dnprogramming/api:latest
1515
working-directory: ${{ env.working-directory}}

.github/workflows/api-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
working-directory: ./api
1010
git_hash: $(git rev-parse --short "$GITHUB_SHA")
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Build the API Docker image
1414
run: docker build . --file Dockerfile --tag api:${{ env.git_hash }}
1515
working-directory: ${{ env.working-directory}}

.github/workflows/api-dotnet-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
env:
1313
working-directory: ./api
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v5
1818
with:

.github/workflows/node-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Use Node.js
2525
uses: actions/setup-node@v6
2626
with:

.github/workflows/python-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
python-version: ["3.12"]
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Set up Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v6
1717
with:

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
container:
2121
image: returntocorp/semgrep
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- run: semgrep ci

.github/workflows/sonarscan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Build and analyze
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
1515
- name: SonarCloud Scan

.github/workflows/webapp-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
working-directory: ./webapp
1010
git_hash: $(git rev-parse --short "$GITHUB_SHA")
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Build the Web Application Docker image
1414
run: docker build . --file Dockerfile --tag webapp:${{ env.git_hash }}
1515
working-directory: ${{ env.working-directory}}

0 commit comments

Comments
 (0)