Skip to content

Commit 3980d13

Browse files
authored
Merge pull request #355 from KenMwaura1/dependabot/github_actions/actions/checkout-7
build(deps): bump actions/checkout from 6 to 7
2 parents 0d8eaae + 7f175cf commit 3980d13

10 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/check-python-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
new-versions: ${{ steps.check.outputs.new-versions }}
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@v7
1818

1919
- name: Check Python versions
2020
id: check

.github/workflows/codeql.yml

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

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL

.github/workflows/docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- name: Build the Docker image
2424
run: docker compose build --no-cache --force-rm
2525
test:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@v7
2929
- name: Test the Docker image
3030
run: docker compose up -d
3131
push_to_registry:
3232
name: Push Docker image to Docker Hub
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Check out the repo
36-
uses: actions/checkout@v6
36+
uses: actions/checkout@v7
3737

3838
- name: Set up Docker Buildx
3939
uses: docker/setup-buildx-action@v4

.github/workflows/docker-publish.yml

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

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@v7
3434

3535
# Install the cosign tool except on PR
3636
# https://github.com/sigstore/cosign-installer

.github/workflows/node.js.yml

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

2323
steps:
24-
- uses: actions/checkout@v6
24+
- uses: actions/checkout@v7
2525
- name: Use Node.js ${{ matrix.node-version }}
2626
uses: actions/setup-node@v6
2727
with:

.github/workflows/pythonapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: ["3.10","3.11","3.12","3.13"]
1818

1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v7
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v6
2323
with:

.github/workflows/sms_notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020

2121
- name: SMS Notification
2222
if: ${{ github.event.workflow_run.conclusion == 'failure' || github.event.workflow_run.conclusion == 'cancelled' }}

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@v7
3434
- name: Setup Pages
3535
uses: actions/configure-pages@v6
3636
- name: Upload artifact

.github/workflows/update-nodejs-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v7
1515

1616
- name: Setup Node.js
1717
uses: actions/setup-node@v6

.github/workflows/update-python-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v7
1515

1616
- name: Setup Python
1717
uses: actions/setup-python@v6

0 commit comments

Comments
 (0)