Skip to content

Commit

Permalink
bump actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak committed Jun 2, 2024
1 parent 2a8a783 commit 57ec2d2
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml

build:
needs: test
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pipenv'
cache-dependency-path: |
Pipfile.lock

- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
Expand Down Expand Up @@ -66,7 +64,7 @@ jobs:
touch build/.nojekyll
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4.4.3
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter/slim@v5
uses: github/super-linter/slim@v6.5.1
env:
DEFAULT_BRANCH: develop
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
run: make test-coverage

- name: Upload coverage report
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Move cache
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ on:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ concurrency:

jobs:
test:
uses: ./.github/workflows/test-base.yml
uses: ./.github/workflows/reusable-test.yml

0 comments on commit 57ec2d2

Please sign in to comment.