Skip to content

Navigation Menu

Sign in
Sign up

feat: update GitHub Actions to Node.js 24 compatible versions #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
AndriMar wants to merge 2 commits into main
base: main
Choose a base branch
Loading
from chore/update-action-versions
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/apply-shared/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
using: "composite"
steps:
- name: Setup Terraform
uses: hashicorp/setup-Terraform@v3
uses: hashicorp/setup-Terraform@v4
with:
terraform_version: ${{ inputs.TERRAFORM_VERSION }}

Expand All @@ -31,7 +31,7 @@ runs:
run: terraform --version

- name: "Configure Shared Account AWS Credentials"
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.AWS_ECR_DEPLOYMENT_ROLE }}
aws-region: ${{ inputs.AWS_REGION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/apply-terraform/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
using: 'composite'
steps:
- name: Setup Terraform
uses: hashicorp/setup-Terraform@v3
uses: hashicorp/setup-Terraform@v4
with:
terraform_version: ${{ inputs.TERRAFORM_VERSION }}

Expand All @@ -34,7 +34,7 @@ runs:
run: terraform --version

- name: 'Configure AWS Credentials'
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.AWS_DEPLOYMENT_ROLE }}
aws-region: ${{ inputs.AWS_REGION }}
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/build-and-push-image/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
using: "composite"
steps:
- name: 🔐 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.AWS_ROLE_ARN }}
role-session-name: GitHub-Action-Role
Expand Down Expand Up @@ -65,7 +65,7 @@ runs:
echo "EOF" >> $GITHUB_OUTPUT

- name: 🐳 Docker Metadata
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
id: meta
with:
images: "${{ steps.parse.outputs.images }}"
Expand All @@ -78,7 +78,7 @@ runs:

- name: 🏗️ Build and push
if: ${{ !inputs.CUSTOM_BUILD_SCRIPT }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/deploy-ecs-service/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
using: 'composite'
steps:
- name: Setup Terraform
uses: hashicorp/setup-Terraform@v3
uses: hashicorp/setup-Terraform@v4
with:
terraform_version: ${{ inputs.TERRAFORM_VERSION }}

Expand All @@ -51,7 +51,7 @@ runs:
run: terraform --version

- name: 'Configure AWS Credentials'
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.AWS_DEPLOYMENT_ROLE }}
aws-region: ${{ inputs.AWS_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/get-next-version/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
steps:
- name: ⏭️ Determine the next release version
id: semantic
uses: cycjimmy/semantic-release-action@v4
uses: cycjimmy/semantic-release-action@v6
with:
dry_run: true
semantic_version: 24.2.3
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/github-release/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
steps:
- name: ⏯️ Release
id: semantic
uses: cycjimmy/semantic-release-action@v4
uses: cycjimmy/semantic-release-action@v6
env:
GITHUB_TOKEN: ${{ inputs.github_token }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/retag-docker-image/action.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
using: 'composite'
steps:
- name: 🔐 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.AWS_ROLE_ARN }}
role-session-name: GitHub-Action-Role
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main-deploy.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
new_release_published: ${{ steps.get-next-version.outputs.new_release_published }}
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🏷️ Get next version
id: get-next-version
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: '🚀 Apply shared'
uses: aproorg/github-workflows/.github/actions/apply-shared@main
Expand All @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
lfs: ${{ inputs.build_checkout_with_lfs }}
fetch-tags: ${{ inputs.build_checkout_fetch_tags }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: '🚀 Deploy to dev'
uses: aproorg/github-workflows/.github/actions/deploy-ecs-service@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-release.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
new_release_published: ${{ steps.get-next-version.outputs.new_release_published }}
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: 🏷️ Get next version
id: get-next-version
uses: aproorg/github-workflows/.github/actions/get-next-version@main
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-deploy.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🔖 Version tag image
uses: aproorg/github-workflows/.github/actions/retag-docker-image@main
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Deploy to staging
uses: aproorg/github-workflows/.github/actions/deploy-ecs-service@main
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📁 Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 🚀 Deploy to prod
uses: aproorg/github-workflows/.github/actions/deploy-ecs-service@main
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/terraform-quality-checks.yml
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,37 @@ jobs:
name: "✅ Terraform quality checks"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
name: "📁 Checkout"
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- uses: actions/cache@v4
- uses: actions/cache@v5
name: "📥 Cache plugin dir"
with:
path: ~/.tflint.d/plugins
key: tflint-${{ hashFiles('terraform/.tflint.hcl') }}

- uses: Homebrew/actions/setup-homebrew@master
- uses: Homebrew/actions/setup-homebrew@main
name: "☕️ Set up Homebrew"
id: set-up-homebrew

- name: "📥 Cache Homebrew Bundler RubyGems"
id: cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: rubygems-

- uses: terraform-linters/setup-tflint@v4
- uses: terraform-linters/setup-tflint@v6
name: "🛠️ Setup TFLint"
with:
tflint_version: latest

- name: "🛠️ Setup Terraform"
uses: hashicorp/setup-Terraform@v3
uses: hashicorp/setup-Terraform@v4
with:
terraform_version: ${{ inputs.terraform_version }}

Expand Down

AltStyle によって変換されたページ (->オリジナル) /