Skip to content

Commit 170f783

Browse files
authored
Merge pull request #136 from scipp/update-actions
Update `actions` action and dependabot configuration.
2 parents a74a9ca + afb0ae1 commit 170f783

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ updates:
99
# if you use those, you don't need updates.
1010
- dependency-name: "actions/*"
1111
- package-ecosystem: "github-actions"
12-
directory: "/template"
12+
directory: "/template/.github/workflows" # Should specify full path if it's not '/'.
1313
schedule:
1414
interval: "weekly"
1515
ignore:

template/.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: pre-commit/[email protected]
3131
with:
3232
extra_args: --all-files
33-
- uses: pre-commit-ci/[email protected].1
33+
- uses: pre-commit-ci/[email protected].2
3434
if: always()
3535
with:
3636
msg: Apply automatic formatting

template/.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: 'ubuntu-22.04'
4848
steps:
4949
- run: sudo apt install --yes graphviz pandoc
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
with:
5252
ref: ${{ inputs.branch == '' && github.ref_name || inputs.branch }}
5353
fetch-depth: 0 # history required so cmake can determine version

template/.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: 'ubuntu-22.04'
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
submodules: true
2424
fetch-depth: 0 # history required so setuptools_scm can determine version
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: 'ubuntu-22.04'
4242

4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0 # history required so setuptools_scm can determine version
4747

template/.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
runs-on: ${{ inputs.os-variant }}
4949

5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
with:
5353
ref: ${{ inputs.checkout_ref }}
54-
- uses: actions/setup-python@v3
54+
- uses: actions/setup-python@v5
5555
with:
5656
python-version: ${{ inputs.python-version }}
5757
- run: python -m pip install --upgrade pip

0 commit comments

Comments
 (0)