Skip to content

Commit 4d3aee6

Browse files
dependabot[bot]einarwar
authored andcommitted
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 15e5ccb commit 4d3aee6

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/codeql.yaml

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/deploy-to-radix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
deploy-on-radix:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939

4040
# You'll need an app registration with a Federated Credential for this to
4141
# work. Note that the credential will need to specify a branch name. This

.github/workflows/generate-changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
# Checkout repository. By setting `fetch-depth: 0`, this fetch will include all history and tags
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
fetch-depth: 0
3535
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/linting-and-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: "pre-commit"
2222
steps:
2323
- name: "Setup: checkout repository"
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: "Setup: add python"
2727
uses: actions/setup-python@v5
@@ -41,7 +41,7 @@ jobs:
4141
working-directory: ./api
4242
steps:
4343
- name: "Setup: checkout repository"
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545

4646
- name: "Setup: install uv"
4747
uses: astral-sh/setup-uv@v6
@@ -62,7 +62,7 @@ jobs:
6262
working-directory: ./web
6363
steps:
6464
- name: "Setup: check out repository"
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666
with:
6767
sparse-checkout: |
6868
.github

.github/workflows/publish-docs.yaml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Setup node
3333
uses: actions/setup-node@v4

.github/workflows/publish-image.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build-and-publish-nginx-main:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 2
2828

@@ -56,7 +56,7 @@ jobs:
5656
build-and-publish-api-main:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
with:
6161
fetch-depth: 2
6262

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
api-unit-tests:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Login to image registry
2525
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login $IMAGE_REGISTRY -u $GITHUB_ACTOR --password-stdin
@@ -34,7 +34,7 @@ jobs:
3434
api-integration-tests:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

3939
- name: Login to image registry
4040
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login $IMAGE_REGISTRY -u $GITHUB_ACTOR --password-stdin
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
if: ${{ false }} # disable for now as they do not currently work
5656
steps:
57-
- uses: actions/checkout@v4
57+
- uses: actions/checkout@v5
5858

5959
- name: Login to image registry
6060
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login $IMAGE_REGISTRY -u $GITHUB_ACTOR --password-stdin
@@ -75,7 +75,7 @@ jobs:
7575
steps:
7676
# If you know your docs does not rely on anything outside of the documentation folder, the commented out code below can be used to only test the docs build if the documentation folder changes.
7777
- name: Checkout GitHub Action
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979
# with:
8080
# fetch-depth: 0
8181

0 commit comments

Comments
 (0)