Skip to content

Commit

Permalink
Bump actions in GA workflows
Browse files Browse the repository at this point in the history
- Bump actions/checkout from v3 to v4
- Bump actions/setup-node from v3 to v4
- Bump docker/build-push-action from v4 to v5
- Bump docker/login-action from v2 to v3
- Bump docker/metadata-action from v4 to v5
- Bump docker/setup-buildx-action from v2 to v3
- Bump docker/setup-qemu-action from v2 to v3
  • Loading branch information
victorpopkov committed Jan 18, 2024
1 parent f5c26cf commit 423c2ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@ jobs:
timeout-minutes: 30
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set docker outputs
id: docker
run: |
echo "cert-path=/home/runner/.docker/deploy" >> $GITHUB_OUTPUT
- 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 private registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ secrets.DOCKER_REGISTRY_HOST }}
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_PASS }}
- name: Generate an image metadata
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
flavor: latest=${{ github.ref == 'refs/heads/main' && 'true' || 'false' }}
images: ${{ secrets.DOCKER_REGISTRY_HOST }}/universal-redux
labels: [email protected]
- name: Build an image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
build-args: |
APP_BASE_PATH=${{ secrets.APP_PUBLIC_PATH }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
node_version: [18.12.0]
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
id: node
with:
node-version: ${{ matrix.node_version }}
Expand Down Expand Up @@ -70,9 +70,9 @@ jobs:
node_version: [18.12.0]
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
id: node
with:
node-version: ${{ matrix.node_version }}
Expand Down

0 comments on commit 423c2ed

Please sign in to comment.