Skip to content

Commit

Permalink
chore: update actions versions (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
em-pe committed Sep 4, 2024
1 parent d3cff89 commit 1a53d52
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.10]
env:
PYTHON_PACKAGE: kedro_kubeflow
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Validate inputs
Expand All @@ -44,7 +44,7 @@ jobs:
git push -u origin release-${{ steps.bump_version.outputs.package_version }}
- name: Open a PR to merge the release to master
id: open_pr
uses: vsoch/pull-request-action@1.0.12
uses: vsoch/pull-request-action@1.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULL_REQUEST_BRANCH: master
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.10]
env:
PYTHON_PACKAGE: kedro_kubeflow
steps:
- name: Checkout the repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # necessary to enable merging, all the history is needed
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Build package dist from source # A better way will be : https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ but pep 517 is still marked as experimental
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
python-version: [ '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -104,7 +104,7 @@ jobs:
- uses: actions/checkout@v2

- name: Setup python
uses: actions/setup-python@v2.2.1
uses: actions/setup-python@v4.7.1
with:
python-version: '3.10'

Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
mv ../tests/e2e/kubeflow.yml conf/base/kubeflow.yml
- name: Prepare docker env
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
with:
install: true

Expand All @@ -157,7 +157,7 @@ jobs:
dst: gcr.io/gid-ml-ops-sandbox/kedro-kubeflow-e2e:${{ github.sha }}

- name: Set up GCP Credentials
uses: google-github-actions/auth@v0.6.0
uses: google-github-actions/auth@v1.1.1
with:
credentials_json: ${{ secrets.GOOGLE_CLOUD_TOKEN_JSON }}
create_credentials_file: true
Expand Down

0 comments on commit 1a53d52

Please sign in to comment.