Skip to content

Commit cd72ddc

Browse files
Updating GH workflow actions versios
1 parent be5b314 commit cd72ddc

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/compose-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
name: test docker-compose start
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- run: mkdir -p databases/{postgres,orientdb}/{backup,data}
1313
- run: mkdir keys
1414
- run: docker-compose -f "docker-compose.dev.yml" up -d --build

.github/workflows/npm-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: docker build
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: build the keycloak docker container
1414
run: |
1515
docker build --file demo/Dockerfile.auth --tag bcgsc/pori-auth .
@@ -21,11 +21,11 @@ jobs:
2121
python-version: [3.8]
2222
steps:
2323
- name: checkout
24-
uses: actions/checkout@v1
24+
uses: actions/checkout@v4
2525
with:
2626
submodules: true
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: install dependencies

.github/workflows/publish-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
python-version: [3.8]
1414
steps:
1515
- name: checkout
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v4
1717
with:
1818
submodules: true
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: install dependencies
@@ -27,7 +27,7 @@ jobs:
2727
- run: bash docs/build_external.sh
2828
- run: mkdocs build
2929
- name: Deploy
30-
uses: peaceiris/actions-gh-pages@v3
30+
uses: peaceiris/actions-gh-pages@v4
3131
with:
3232
github_token: ${{ secrets.GITHUB_TOKEN }}
3333
publish_dir: ./dist

0 commit comments

Comments
 (0)