diff --git a/.github/workflows/workflow-pr_task-assignReviewer.yml b/.github/workflows/workflow-pr_task-assignReviewer.yml index 3280081..45b20f9 100644 --- a/.github/workflows/workflow-pr_task-assignReviewer.yml +++ b/.github/workflows/workflow-pr_task-assignReviewer.yml @@ -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 }} diff --git a/.github/workflows/workflow-release_task-deployDocker.yml b/.github/workflows/workflow-release_task-deployDocker.yml index 7183eec..23f036e 100644 --- a/.github/workflows/workflow-release_task-deployDocker.yml +++ b/.github/workflows/workflow-release_task-deployDocker.yml @@ -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 @@ -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 @@ -43,13 +43,13 @@ 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 }} @@ -57,7 +57,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker container id: metadata - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: | ${{ github.repository }} @@ -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 diff --git a/.github/workflows/workflow-release_task-deployPypi.yml b/.github/workflows/workflow-release_task-deployPypi.yml index 5edda73..68489b2 100644 --- a/.github/workflows/workflow-release_task-deployPypi.yml +++ b/.github/workflows/workflow-release_task-deployPypi.yml @@ -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 @@ -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 }} diff --git a/.github/workflows/workflow-release_task-publishGithub.yml b/.github/workflows/workflow-release_task-publishGithub.yml index 7559ea3..f4d7212 100644 --- a/.github/workflows/workflow-release_task-publishGithub.yml +++ b/.github/workflows/workflow-release_task-publishGithub.yml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/workflow-version_task-semverGithub.yml b/.github/workflows/workflow-version_task-semverGithub.yml index 0626b0e..fecc099 100644 --- a/.github/workflows/workflow-version_task-semverGithub.yml +++ b/.github/workflows/workflow-version_task-semverGithub.yml @@ -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 }} @@ -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 }}