Skip to content

Commit

Permalink
Merge pull request #29 from khanlab/dependabot/github_actions/github-…
Browse files Browse the repository at this point in the history
…actions-7c00e8391d

Bump the github-actions group with 9 updates
  • Loading branch information
Jason Kai authored Feb 15, 2024
2 parents 9d180f1 + 5dd5d5b commit b6310d8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow-pr_task-assignReviewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Assign reviewer
uses: kentaro-m/auto-assign-action@v1.2.5
uses: kentaro-m/auto-assign-action@v2.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
12 changes: 6 additions & 6 deletions .github/workflows/workflow-release_task-deployDocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- name: Maximize space available for buiilding docker container
if: inputs.maximize_space
uses: easimon/maximize-build-space@v8
uses: easimon/maximize-build-space@v10
with:
remove-android: "true" # android sdk
remove-codeql: "true" # code scanning
Expand All @@ -33,7 +33,7 @@ jobs:
overprovision-lvm: "true" # "overuse" disk space

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -43,21 +43,21 @@ jobs:
git checkout $LATEST_TAG
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to GH container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker container
id: metadata
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
${{ github.repository }}
Expand All @@ -66,7 +66,7 @@ jobs:
latest=auto
- name: Build and push Docker container
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-release_task-deployPypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -34,7 +34,7 @@ jobs:
git checkout $LATEST_TAG
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow-release_task-publishGithub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Grab release version
id: semver
uses: khanlab/actions/.github/actions/action-version_task-updateReleaseVersion@v0.3.1
uses: khanlab/actions/.github/actions/action-version_task-updateReleaseVersion@v0.3.5
with:
bp-pat: ${{ secrets.BP_PAT }}

Expand All @@ -72,13 +72,13 @@ jobs:
replace: '"Version": "${{ steps.semver.outputs.new-version }}"'

- name: Commit changes to protected branch
uses: khanlab/actions/.github/actions/action-version_task-commit@v0.3.1
uses: khanlab/actions/.github/actions/action-version_task-commit@v0.3.5
with:
version: ${{ steps.semver.outputs.new-version }}
bp-pat: ${{ secrets.BP_PAT }}

- name: Publish changelog
uses: release-drafter/release-drafter@v5
uses: release-drafter/release-drafter@v6
with:
name: ${{ steps.semver.outputs.new-version }}
tag: v${{ steps.semver.outputs.new-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-version_task-semverGithub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
steps:
- name: Grab previous version
id: semver
uses: khanlab/actions/.github/actions/action-version_task-updatePrereleaseVersion@v0.3.1
uses: khanlab/actions/.github/actions/action-version_task-updatePrereleaseVersion@v0.3.5
with:
project-metadata: ${{ inputs.project-metadata }}
bp-pat: ${{ secrets.BP_PAT }}
Expand All @@ -64,7 +64,7 @@ jobs:
replace: '"Version": "${{ steps.semver.outputs.new-version }}"'

- name: Commit changes
uses: khanlab/actions/.github/actions/action-version_task-commit@v0.3.1
uses: khanlab/actions/.github/actions/action-version_task-commit@v0.3.5
with:
version: ${{ steps.semver.outputs.new-version }}
bp-pat: ${{ secrets.BP_PAT }}

0 comments on commit b6310d8

Please sign in to comment.