Skip to content

Commit b1bdbe0

Browse files
Bump the all-actions group across 1 directory with 4 updates
Bumps the all-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v4) Updates `docker/login-action` from 2.1.0 to 3.3.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v2.1.0...v3.3.0) Updates `docker/build-push-action` from 4.0.0 to 6.9.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v4.0.0...v6.9.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9d8fbe7 commit b1bdbe0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/npm_and_docker_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Install Node
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: "20.x"
1717
registry-url: "https://registry.npmjs.org"
@@ -28,13 +28,13 @@ jobs:
2828
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2929

3030
- name: Docker Login
31-
uses: docker/login-action@v2.1.0
31+
uses: docker/login-action@v3.3.0
3232
with:
3333
username: ${{ secrets.DOCKERHUB_USERNAME }}
3434
password: ${{ secrets.DOCKERHUB_TOKEN }}
3535

3636
- name: Build and push Docker images
37-
uses: docker/build-push-action@v4.0.0
37+
uses: docker/build-push-action@v6.9.0
3838
with:
3939
push: true
4040
tags: stellar/anchor-tests:${{ github.event.release.tag_name }},stellar/anchor-tests:latest

0 commit comments

Comments
 (0)