Skip to content

Commit

Permalink
Reenables dependabot updates
Browse files Browse the repository at this point in the history
Signed-off-by: Haroon Sheikh <[email protected]>
  • Loading branch information
haroon-sheikh committed Jul 25, 2023
1 parent 1c6126e commit a3a07ed
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 25 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: weekly
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: weekly
2 changes: 1 addition & 1 deletion .github/workflows/release_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
CI: true

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Python 3.7
uses: actions/setup-python@v1
Expand Down
50 changes: 26 additions & 24 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ jobs:
python-version: [3.7, 3.9]

steps:
- uses: actions/checkout@v1

- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '${{ matrix.python-version }}'
cache: 'pip' # caching pip dependencies

- name: Install dependencies
run: |
Expand All @@ -36,23 +37,24 @@ jobs:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.7'
cache: 'pip' # caching pip dependencies

- name: Set up Go 1.13
uses: actions/setup-go@v1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.13
id: go
go-version: '1.20'

- name: Setup java 12.x.x
uses: actions/setup-java@v1
- name: Setup java
uses: actions/setup-java@v3
with:
java-version: 12.x.x
distribution: 'temurin'
java-version: '11'

- uses: getgauge/setup-gauge@master
with:
Expand Down Expand Up @@ -89,23 +91,23 @@ jobs:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Python 3.7
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: '3.7'
cache: 'pip' # caching pip dependencies

- name: Use Node.js
uses: actions/setup-node@v1
- name: Set up Nodejs
uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: 18

- name: Set up Go 1.13
uses: actions/setup-go@v1
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.13
id: go
go-version: '1.20'

- uses: getgauge/setup-gauge@master
with:
Expand Down

0 comments on commit a3a07ed

Please sign in to comment.