Skip to content

Commit 7a9e4e5

Browse files
authored
Merge pull request #99 from derskythe/dependabot/github_actions/actions/checkout-5
chore(deps): bump actions/checkout from 4 to 5
2 parents fc1a1eb + 5189e59 commit 7a9e4e5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/build-base-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
DOCKER_FILE: ${{ format('Dockerfile.{0}-{1}', vars.BASE_IMAGE_SUFFIX, vars.IMAGE_TAG_PREFIX) }}
5757
steps:
5858
- name: Copy Repo Files
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060

6161
- name: BUILD ${{ env.RELEASE_IMAGE_NAME }}
6262
if: ${{ env.RELEASE_IMAGE_NAME != '-' }}

.github/workflows/build-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
TIMESTAMP: ''
6363
steps:
6464
- name: Copy Repo Files
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666

6767
- name: Set version by default
6868
shell: pwsh
@@ -182,7 +182,7 @@ jobs:
182182
# echo "VERSION_NUMBER=${{ github.RUN_NUMBER }}.${{ github.RUN_ATTEMPT }}" >> $GITHUB_ENV
183183
# echo 'FULL_TAG=${{ matrix.os }}-slim-${{ github.RUN_NUMBER }}.${{ github.RUN_ATTEMPT }}' >> $GITHUB_ENV
184184
# - name: Copy Repo Files
185-
# uses: actions/checkout@v4
185+
# uses: actions/checkout@v5
186186
# - name: Set up QEMU
187187
# uses: docker/setup-qemu-action@v3
188188
# - name: Set up Docker Buildx

.github/workflows/build-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
TIMESTAMP: ''
7272
steps:
7373
- name: Copy Repo Files
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575

7676
- name: Set version by default
7777
shell: pwsh

.github/workflows/check-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
CONFIG_FILE: './.github/url-list.json'
2929
steps:
3030
- name: Copy Repo Files
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
- name: Process URLs
3434
id: process-urls

.github/workflows/codeql.yml

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

4242
steps:
4343
- name: Checkout repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545

4646
# Initializes the CodeQL tools for scanning.
4747
- name: Initialize CodeQL

.github/workflows/snyk-security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
Write-Output 'DOCKERFILE=${{ matrix.dockerfile }}' >> $env:GITHUB_ENV
9292
}
9393
- name: Copy Repo Files
94-
uses: actions/checkout@v4
94+
uses: actions/checkout@v5
9595

9696
- name: Set up QEMU
9797
uses: docker/setup-qemu-action@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Tests
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: actions/setup-python@v5
1313
- uses: pre-commit/[email protected]
1414
- name: Run ShellCheck

.github/workflows/update-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
-
3131
name: Checkout code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
# -
3434
# name: Set version by default
3535
# run: |

0 commit comments

Comments
 (0)