Skip to content

Commit bbf1ef1

Browse files
authored
Merge pull request #58 from zkoppert/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents ff91478 + 1d113f7 commit bbf1ef1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/codeql-analysis.yml

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

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Initialize CodeQL
3232
uses: github/codeql-action/init@v3

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Build the Docker image
1919
run: docker build . --file Dockerfile --tag enforcer:"$(date +%s)"

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Checkout the code base #
3131
##########################
3232
- name: Checkout Code
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
################################
3636
# Run Linter against code base #

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ["3.9", "3.10", "3.11"]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v5
2525
with:

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM python:3.11-slim-buster
1+
FROM python:3.13.7-slim
22

33
WORKDIR /action/workspace
44
COPY codeql.yml requirements.txt enforcer.py /action/workspace/
55

6+
# Update installation commands
67
RUN python3 -m pip install --no-cache-dir -r requirements.txt \
78
&& apt-get -y update \
89
&& apt-get -y install --no-install-recommends git \

0 commit comments

Comments
 (0)