Skip to content

Commit 896f00a

Browse files
authored
Merge pull request #48 from statisticsnorway/dependabot/github_actions/github-action-dependencies-09c6ff1c61
Bump the github-action-dependencies group across 1 directory with 4 updates
2 parents 5b557ea + 5636d27 commit 896f00a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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: Install Poetry
3232
run: |
@@ -35,7 +35,7 @@ jobs:
3535
poetry --version
3636
3737
- name: Set up Python
38-
uses: actions/setup-python@v6.0.0
38+
uses: actions/setup-python@v6.1.0
3939
with:
4040
python-version: "3.12"
4141
cache: "poetry"

.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/ghaction-github-labeler@v5.3.0 # Use this version until https://github.com/crazy-max/ghaction-github-labeler/issues/221 is fixed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
pull-requests: read
1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 2
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v6.0.0
24+
uses: actions/setup-python@v6.1.0
2525
with:
2626
python-version: "3.12"
2727

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939

4040
steps:
4141
- name: Check out the repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

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

@@ -103,15 +103,15 @@ jobs:
103103
104104
- name: Upload coverage data
105105
if: always() && matrix.session == 'tests'
106-
uses: "actions/upload-artifact@v4"
106+
uses: "actions/upload-artifact@v5"
107107
with:
108108
name: coverage-data-${{ matrix.os }}-${{ matrix.python }}
109109
path: ".coverage.*"
110110
include-hidden-files: true
111111

112112
- name: Upload documentation
113113
if: matrix.session == 'docs-build'
114-
uses: actions/upload-artifact@v4
114+
uses: actions/upload-artifact@v5
115115
with:
116116
name: docs
117117
path: docs/_build
@@ -121,12 +121,12 @@ jobs:
121121
needs: tests
122122
steps:
123123
- name: Check out the repository
124-
uses: actions/checkout@v5
124+
uses: actions/checkout@v6
125125
with:
126126
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
127127

128128
- name: Set up Python
129-
uses: actions/setup-python@v6.0.0
129+
uses: actions/setup-python@v6.1.0
130130
with:
131131
python-version: "3.11"
132132

@@ -148,7 +148,7 @@ jobs:
148148
nox --version
149149
150150
- name: Download coverage data
151-
uses: actions/download-artifact@v5
151+
uses: actions/download-artifact@v6
152152
with:
153153
pattern: coverage-data-*
154154
merge-multiple: true

0 commit comments

Comments
 (0)