Skip to content

Commit 8f2456a

Browse files
Merge pull request #3657 from Uninett/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents 3db7588 + f60e124 commit 8f2456a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- uses: kenchan0130/actions-system-info@59699597e84e80085a750998045983daa49274c4
2424
id: system-info
2525

@@ -128,7 +128,7 @@ jobs:
128128
name: "Test Javascript code"
129129
runs-on: ubuntu-latest
130130
steps:
131-
- uses: actions/checkout@v5
131+
- uses: actions/checkout@v6
132132
- uses: browser-actions/setup-chrome@latest
133133
- uses: browser-actions/setup-firefox@latest
134134
- run: chrome --version

.github/workflows/dockercompose.yml

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

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: docker compose build
1818
run: |

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
name: Verify Python formatting
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414

1515
- uses: astral-sh/ruff-action@v3
1616
with:

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: Lint Python
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- uses: astral-sh/ruff-action@v3
1414
with:
1515
version: "0.12.0"

.github/workflows/publish-test-results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Codecov requires source code to process the coverage file and generate coverage
1818
# reports
1919
- name: Checkout Code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323
- name: Download and Extract Artifacts

.github/workflows/towncrier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
name: Towncrier check
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818

0 commit comments

Comments
 (0)