Skip to content

Commit 621da38

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6e22f20 commit 621da38

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: SCM Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Setup Python & Poetry Environment
2121
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/check-release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read
1313
steps:
1414
- name: SCM Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Python & Poetry Environment
1818
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/checks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
steps:
1313
- name: SCM Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717

@@ -29,7 +29,7 @@ jobs:
2929
contents: read
3030
steps:
3131
- name: SCM Checkout
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- name: Setup Python & Poetry Environment
3535
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -56,7 +56,7 @@ jobs:
5656
if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' }}
5757
steps:
5858
- name: SCM Checkout
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
- name: Setup Python & Poetry Environment
6262
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -75,7 +75,7 @@ jobs:
7575
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
7676
steps:
7777
- name: SCM Checkout
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v6
7979

8080
- name: Setup Python & Poetry Environment
8181
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -106,7 +106,7 @@ jobs:
106106

107107
steps:
108108
- name: SCM Checkout
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v6
110110

111111
- name: Setup Python & Poetry Environment
112112
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -128,7 +128,7 @@ jobs:
128128

129129
steps:
130130
- name: SCM Checkout
131-
uses: actions/checkout@v5
131+
uses: actions/checkout@v6
132132

133133
- name: Setup Python & Poetry Environment
134134
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -152,7 +152,7 @@ jobs:
152152
contents: read
153153
steps:
154154
- name: SCM Checkout
155-
uses: actions/checkout@v5
155+
uses: actions/checkout@v6
156156

157157
- name: Setup Python & Poetry Environment
158158
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -168,7 +168,7 @@ jobs:
168168
contents: read
169169
steps:
170170
- name: SCM Checkout
171-
uses: actions/checkout@v5
171+
uses: actions/checkout@v6
172172

173173
- name: Setup Python & Poetry Environment
174174
uses: exasol/python-toolbox/.github/actions/python-environment@v1
@@ -188,7 +188,7 @@ jobs:
188188

189189
steps:
190190
- name: SCM Checkout
191-
uses: actions/checkout@v5
191+
uses: actions/checkout@v6
192192

193193
- name: Setup Python & Poetry Environment
194194
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read
1313
steps:
1414
- name: SCM Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/matrix-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: SCM Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/matrix-exasol.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: SCM Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/matrix-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: read
1515
steps:
1616
- name: SCM Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Setup Python & Poetry Environment
2020
uses: exasol/python-toolbox/.github/actions/python-environment@v1

.github/workflows/report.yml

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

1515
steps:
1616
- name: SCM Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/slow-checks.yml

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

2525
steps:
2626
- name: SCM Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Setup Python & Poetry Environment
3030
uses: exasol/python-toolbox/.github/actions/python-environment@v1

0 commit comments

Comments
 (0)