Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mabulgu committed Nov 6, 2024
1 parent a3970b2 commit a4c203f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2
- name: Install setuptools for Python ${{ matrix.python-version }}
run: python -m pip install --upgrade setuptools

Expand All @@ -30,7 +30,7 @@ jobs:
run: make install-dependencies

- name: Run pre-commit
uses: pre-commit/action@v3.0.0
uses: pre-commit/action@v3.0.1

- name: Retrieve the kubeconfig and decode it to a file
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
version: ${{ steps.get_version.outputs.STRIMZI_CLI_VERSION }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2
- name: Get release version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

Expand All @@ -28,7 +28,7 @@ jobs:
run: exit 1

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.3.0
with:
python-version: '3.x'

Expand All @@ -47,12 +47,12 @@ jobs:
continue-on-error: true

- name: Sleep for 3 mins
uses: jakejarvis/wait-action@master
uses: jakejarvis/wait-action@0.1.1
with:
time: '180s'

- name: Bake and push image
uses: docker/build-push-action@v1.1.0
uses: docker/build-push-action@v6.9.0
with:
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
Expand All @@ -72,7 +72,7 @@ jobs:
printf '{
"version": "${{ needs.deploy.outputs.version }}"
}' >> build_data.json
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.4.3
with:
name: build_data
path: ./

0 comments on commit a4c203f

Please sign in to comment.