Skip to content

Commit

Permalink
Update GitHub Actions using deprecated Node.js version
Browse files Browse the repository at this point in the history
  • Loading branch information
sophokles73 committed Feb 14, 2024
1 parent 93339c4 commit 484fa05
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/containerize_fms_consumer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,24 +64,24 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
install: true

- name: Login to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata and create tag
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -90,7 +90,7 @@ jobs:
type=ref,event=pr
- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: "components/."
file: "components/Dockerfile.fms-consumer"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/containerize_fms_forwarder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata and create {branch}-{sha} tag
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -88,7 +88,7 @@ jobs:
type=ref,event=pr
- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: "components/."
file: "components/Dockerfile.fms-forwarder"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/containerize_fms_server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,24 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
install: true

- name: Login to the Container registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata and create tag
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -87,7 +87,7 @@ jobs:
type=ref,event=pr
- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: "components/."
file: "components/Dockerfile.fms-server"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_source_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Lint shell scripts
uses: bewuethr/shellcheck-action@v2
- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 484fa05

Please sign in to comment.