Skip to content

Commit 653566b

Browse files
Bump the github-action-dependencies group with 2 updates
Bumps the github-action-dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `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) Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 78073c4 commit 653566b

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: "Authenticate to Google Cloud"
3131
id: "auth"

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out the repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v6.0.0
32+
uses: actions/setup-python@v6.1.0
3333
with:
3434
python-version: "3.13" # Pyarrow doesn't provide wheels for 3.14 yet
3535

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
image-tag: ${{ steps.metadata.outputs.tags }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: "Authenticate to Google Cloud"
3232
id: "auth"
@@ -83,7 +83,7 @@ jobs:
8383
contents: "read"
8484
id-token: "write"
8585
steps:
86-
- uses: actions/checkout@v5
86+
- uses: actions/checkout@v6
8787
- uses: nais/deploy/actions/deploy@v2
8888
env:
8989
CLUSTER: test

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
steps:
1919
- name: Check out the repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Run Labeler
2323
uses: crazy-max/[email protected]

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }}
2424

2525
- name: Check out the repository
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 2
2929

3030
- name: Set up Python
31-
uses: actions/setup-python@v6.0.0
31+
uses: actions/setup-python@v6.1.0
3232
with:
3333
python-version-file: "pyproject.toml"
3434

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838

3939
steps:
4040
- name: Check out the repository
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
- name: Set up Python ${{ matrix.python }}
44-
uses: actions/setup-python@v6.0.0
44+
uses: actions/setup-python@v6.1.0
4545
with:
4646
python-version: ${{ matrix.python }}
4747

@@ -99,7 +99,7 @@ jobs:
9999
needs: tests
100100
steps:
101101
- name: Check out the repository
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
with:
104104
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
105105

0 commit comments

Comments
 (0)