Skip to content

Commit dc73b85

Browse files
authored
Merge pull request #232 from bervProject/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents 34cd454 + dc388df commit dc73b85

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id-token: write # This is required for requesting the JWT
1313
contents: read
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python 3.13
1717
uses: actions/setup-python@v6
1818
with:
@@ -59,7 +59,7 @@ jobs:
5959
id-token: write # This is required for requesting the JWT
6060
contents: read
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
- name: Use Node.js 22.x
6464
uses: actions/setup-node@v6
6565
with:

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python-version: ['3.11', '3.12', '3.13']
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v6
2525
with:
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-24.04
5050
if: github.event_name == 'pull_request'
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- name: Build image
5454
run: docker build . --file Dockerfile --tag $IMAGE_NAME --build-arg NODE_AUTH_TOKEN=${NODE_AUTH_TOKEN}
5555
docker-push:
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-24.04
5959
if: github.event_name == 'push'
6060
steps:
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262
- name: Login to Docker Hub
6363
uses: docker/login-action@v3
6464
with:

0 commit comments

Comments
 (0)