Skip to content

Commit 354e49a

Browse files
authored
Merge pull request #42 from statisticsnorway/dependabot/github_actions/github-action-dependencies-a94dd5a37b
Bump the github-action-dependencies group across 1 directory with 6 updates
2 parents d55331d + 32f7407 commit 354e49a

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 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@v4
29+
uses: actions/checkout@v5
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@v5.6.0
38+
uses: actions/setup-python@v6.0.0
3939
with:
4040
python-version: "3.12"
4141
cache: "poetry"
@@ -49,7 +49,7 @@ jobs:
4949
poetry run sphinx-build docs docs/_build
5050
5151
- name: Upload artifact
52-
uses: actions/upload-pages-artifact@v3
52+
uses: actions/upload-pages-artifact@v4
5353
with:
5454
path: "docs/_build"
5555

.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@v4
20+
uses: actions/checkout@v5
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: 4 additions & 4 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@v4
19+
uses: actions/checkout@v5
2020
with:
2121
fetch-depth: 2
2222

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

@@ -62,11 +62,11 @@ jobs:
6262
6363
- name: Publish package on PyPI
6464
if: steps.check-version.outputs.tag
65-
uses: pypa/gh-action-pypi-publish@v1.12.4
65+
uses: pypa/gh-action-pypi-publish@v1.13.0
6666

6767
- name: Publish package on TestPyPI
6868
if: (!steps.check-version.outputs.tag)
69-
uses: pypa/gh-action-pypi-publish@v1.12.4
69+
uses: pypa/gh-action-pypi-publish@v1.13.0
7070
with:
7171
repository-url: https://test.pypi.org/legacy/
7272

.github/workflows/tests.yml

Lines changed: 6 additions & 6 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@v4
42+
uses: actions/checkout@v5
4343

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

@@ -121,12 +121,12 @@ jobs:
121121
needs: tests
122122
steps:
123123
- name: Check out the repository
124-
uses: actions/checkout@v4
124+
uses: actions/checkout@v5
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@v5.6.0
129+
uses: actions/setup-python@v6.0.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@v4
151+
uses: actions/download-artifact@v5
152152
with:
153153
pattern: coverage-data-*
154154
merge-multiple: true
@@ -174,4 +174,4 @@ jobs:
174174
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
175175
# No need to run SonarCloud analysis if dependabot update or token not defined
176176
if: env.SONAR_TOKEN != '' && (github.actor != 'dependabot[bot]')
177-
uses: SonarSource/sonarqube-scan-action@v5.3.0
177+
uses: SonarSource/sonarqube-scan-action@v6.0.0

0 commit comments

Comments
 (0)