Skip to content

Commit 85e0f90

Browse files
authored
add dependabot to prevent ending up with deprecated actions (#41)
* add dependabot to prevent ending up with deprecated actions * update action versions
1 parent e730246 commit 85e0f90

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"

.github/workflows/circleci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: GitHub Action step
1616
id: step1
17-
uses: larsoner/circleci-artifacts-redirector-action@master
17+
uses: scientific-python/circleci-artifacts-redirector-action@v1
1818
with:
1919
repo-token: ${{ secrets.GITHUB_TOKEN }}
2020
api-token: ${{ secrets.CIRCLECI_TOKEN }}

.github/workflows/pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
- name: Setup Python
34-
uses: actions/setup-python@v4
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: '3.10'
3737
- name: Setup website
38-
uses: actions/configure-pages@v2
38+
uses: actions/configure-pages@v5
3939
- name: Build project docs
4040
run: |
4141
pip install -r requirements.txt
4242
WEBSITE_LANGUAGE=en sphinx-build unconference unconference/_build/en -b html
4343
WEBSITE_LANGUAGE=es sphinx-build unconference unconference/_build/es -b html
4444
cp index.html unconference/_build/
4545
- name: Upload artifact
46-
uses: actions/upload-pages-artifact@v1
46+
uses: actions/upload-pages-artifact@v3
4747
with:
4848
path: 'unconference/_build'
4949
- name: Deploy to GitHub Pages
5050
id: deployment
51-
uses: actions/deploy-pages@v1
51+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)