Skip to content

Commit

Permalink
Update actions (#50)
Browse files Browse the repository at this point in the history
Signed-off-by: Yu ISHIKAWA <[email protected]>
  • Loading branch information
yu-iskw authored Aug 1, 2023
1 parent b50f9a6 commit 89df21a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.9"
- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ jobs:
python-version: "${{ matrix.python-version }}"
- name: Install packages
run: |
python3 -m pip install -U pip~=22.1
python3 -m pip install -U pip==23.1.0
python3 -m pip install \
--index-url https://test.pypi.org/simple/ \
--force-reinstall \
--use-feature=2020-resolver \
--use-feature=fast-deps \
-U dbt-artifacts-parser=="${{ github.event.inputs.dbt_artifacts_parser_version }}"
- name: Test pacakge
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
Expand Down

0 comments on commit 89df21a

Please sign in to comment.