Skip to content

Commit ee4c2cf

Browse files
committed
actions
1 parent 2fb3f59 commit ee4c2cf

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v0.0.78-4-g38acc2e
2+
_commit: v0.0.78-5-g89be9e5
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: A web app that is hosted within a local intranet. Nuxt frontend, python
55
backend, docker-compose

.github/actions/install_deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ runs:
7070

7171
- name: OIDC Auth for CodeArtifact
7272
if: ${{ inputs.code-artifact-auth-role-name != 'no-code-artifact' }}
73-
uses: aws-actions/configure-aws-credentials@v5.0.0
73+
uses: aws-actions/configure-aws-credentials@v5.1.0
7474
with:
7575
role-to-assume: arn:aws:iam::${{ inputs.code-artifact-auth-role-account-id }}:role/${{ inputs.code-artifact-auth-role-name }}
7676
aws-region: ${{ inputs.code-artifact-auth-region }}

.github/reusable_workflows/build-docker-image.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: OIDC Auth for ECR
7373
if: ${{ inputs.push-role-name != 'no-push' }}
74-
uses: aws-actions/configure-aws-credentials@v5.0.0
74+
uses: aws-actions/configure-aws-credentials@v5.1.0
7575
with:
7676
role-to-assume: arn:aws:iam::${{ steps.parse_ecr_url.outputs.aws_account_id }}:role/${{ inputs.push-role-name }}
7777
aws-region: ${{ steps.parse_ecr_url.outputs.aws_region }}
@@ -128,7 +128,7 @@ jobs:
128128

129129
- name: Build Docker Image
130130
if: ${{ (inputs.save-as-artifact && inputs.push-role-name == 'no-push') || steps.check-if-exists.outputs.status == 'notfound' }}
131-
uses: docker/build-push-action@v6.16.0
131+
uses: docker/build-push-action@v6.18.0
132132
with:
133133
context: ${{ inputs.context }}
134134
push: ${{ inputs.push-role-name != 'no-push' && steps.check-if-exists.outputs.status == 'notfound' }}
@@ -155,7 +155,7 @@ jobs:
155155

156156
- name: Upload Docker Image Artifact
157157
if: ${{ inputs.save-as-artifact }}
158-
uses: actions/upload-artifact@v4.6.2
158+
uses: actions/upload-artifact@v5.0.0
159159
with:
160160
name: ${{ steps.calculate-build-context-hash.outputs.image_name_no_slashes }}
161161
path: ${{ steps.calculate-build-context-hash.outputs.image_name_no_slashes }}.tar

extensions/context.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
7878
context["gha_checkout"] = "v5.0.0"
7979
context["gha_setup_python"] = "v6.0.0"
8080
context["gha_cache"] = "v4.2.4"
81-
context["gha_upload_artifact"] = "v4.6.2"
82-
context["gha_download_artifact"] = "v5.0.0"
81+
context["gha_upload_artifact"] = "v5.0.0"
82+
context["gha_download_artifact"] = "v6.0.0"
8383
context["gha_github_script"] = "v7.0.1"
8484
context["gha_setup_buildx"] = "v3.11.1"
8585
context["buildx_version"] = "v0.27.0"
86-
context["gha_docker_build_push"] = "v6.16.0"
87-
context["gha_configure_aws_credentials"] = "v5.0.0"
86+
context["gha_docker_build_push"] = "v6.18.0"
87+
context["gha_configure_aws_credentials"] = "v5.1.0"
8888
context["gha_amazon_ecr_login"] = "v2.0.1"
8989
context["gha_setup_node"] = "v6.0.0"
9090
context["gha_action_gh_release"] = "v2.2.1"

template/.github/actions/install_deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ runs:
7070

7171
- name: OIDC Auth for CodeArtifact
7272
if: ${{ inputs.code-artifact-auth-role-name != 'no-code-artifact' }}
73-
uses: aws-actions/configure-aws-credentials@v5.0.0
73+
uses: aws-actions/configure-aws-credentials@v5.1.0
7474
with:
7575
role-to-assume: arn:aws:iam::${{ inputs.code-artifact-auth-role-account-id }}:role/${{ inputs.code-artifact-auth-role-name }}
7676
aws-region: ${{ inputs.code-artifact-auth-region }}

0 commit comments

Comments
 (0)