Skip to content

Commit

Permalink
Merge pull request #56 from statisticsnorway/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/github-action-dependencies-2777395d1e

Bump the github-action-dependencies group with 6 updates
  • Loading branch information
aecorn authored Feb 1, 2024
2 parents b534d74 + 2b81ea8 commit 22b0610
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
poetry --version
- name: Set up Python
uses: actions/setup-python@v4.8.0
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11"
cache: "poetry"
Expand All @@ -48,7 +48,7 @@ jobs:
poetry run sphinx-build -W docs docs/_build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: "docs/_build"

Expand All @@ -64,4 +64,4 @@ jobs:

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 2

- name: Set up Python
uses: actions/setup-python@v4.8.0
uses: actions/setup-python@v5.0.0
with:
python-version: "3.10"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4.8.0
uses: actions/setup-python@v5.0.0
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: coverage-data
path: ".coverage.*"

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/_build
Expand All @@ -118,7 +118,7 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Set up Python
uses: actions/setup-python@v4.8.0
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11"

Expand All @@ -139,7 +139,7 @@ jobs:
nox --version
- name: Download coverage data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data

Expand All @@ -162,4 +162,4 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# No need to run SonarCloud analysis if dependabot update or token not defined
if: env.SONAR_TOKEN != '' && (github.actor != 'dependabot[bot]')
uses: SonarSource/sonarcloud-github-action@v2.0.2
uses: SonarSource/sonarcloud-github-action@v2.1.1

0 comments on commit 22b0610

Please sign in to comment.