Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history including tags

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v5
- name: Setup python 3.8
uses: actions/setup-python@v1
with:
Expand All @@ -18,7 +18,7 @@ jobs:
# runs-on: ubuntu-18.04
# steps:
# - name: Checkout
# uses: actions/checkout@v1
# uses: actions/checkout@v5
# - name: Setup Ruby 2.x
# uses: actions/setup-ruby@v1
# with:
Expand All @@ -42,7 +42,7 @@ jobs:
python-version: ['3.7.x', '3.8.x']
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v5
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
Expand All @@ -57,14 +57,14 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v5
- name: Run python integration tests
run: "make actions_test_integration"
test-frontend:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v5
- uses: actions/setup-node@v1
with:
node-version: '8.x'
Expand Down
Loading