Skip to content

Commit 127d1d9

Browse files
Bump the all group with 4 updates
Bumps the all group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/checkout` from 2 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v5) Updates `docker/setup-buildx-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v1...v3) Updates `docker/build-push-action` from 2 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v2...v6) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/setup-buildx-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/build-push-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: docker/login-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9e637bd commit 127d1d9

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/dh-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: apt-get update && apt-get install -y git curl tar libgomp1
1717

1818
- name: Checkout repo
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v5
2020

2121
- name: Verify DH initiator in Go using Gobra
2222
run: |

.github/workflows/model.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
echo "IMAGE_ID=ghcr.io/$REPO_OWNER/protocol-verification-refinement-tamarin" >> $GITHUB_ENV
1515
1616
- name: Checkout repo
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v5
1818

1919
- name: Image version
2020
run: |
@@ -23,10 +23,10 @@ jobs:
2323
echo "IMAGE_TAG=${{ env.IMAGE_ID }}:$VERSION" >> $GITHUB_ENV
2424
2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v1
26+
uses: docker/setup-buildx-action@v3
2727

2828
- name: Build image
29-
uses: docker/build-push-action@v2
29+
uses: docker/build-push-action@v6
3030
with:
3131
context: .
3232
load: true
@@ -44,14 +44,14 @@ jobs:
4444
run: docker run ${{ env.IMAGE_TAG }} ./verify-wireguard.sh
4545

4646
- name: Login to Github Packages
47-
uses: docker/login-action@v1
47+
uses: docker/login-action@v3
4848
with:
4949
registry: ghcr.io
5050
username: ${{ github.actor }}
5151
password: ${{ secrets.GITHUB_TOKEN }}
5252

5353
- name: Push image
54-
uses: docker/build-push-action@v2
54+
uses: docker/build-push-action@v6
5555
with:
5656
context: .
5757
file: tamarin-docker/Dockerfile

.github/workflows/wireguard-code.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
echo "IMAGE_ID=ghcr.io/$REPO_OWNER/protocol-verification-refinement-wireguard" >> $GITHUB_ENV
1515
1616
- name: Checkout repo
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v5
1818

1919
- name: Image version
2020
run: |
@@ -23,10 +23,10 @@ jobs:
2323
echo "IMAGE_TAG=${{ env.IMAGE_ID }}:$VERSION" >> $GITHUB_ENV
2424
2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v1
26+
uses: docker/setup-buildx-action@v3
2727

2828
- name: Build image
29-
uses: docker/build-push-action@v2
29+
uses: docker/build-push-action@v6
3030
with:
3131
context: wireguard/implementation
3232
load: true
@@ -44,14 +44,14 @@ jobs:
4444
run: docker run ${{ env.IMAGE_TAG }} ./test.sh
4545

4646
- name: Login to Github Packages
47-
uses: docker/login-action@v1
47+
uses: docker/login-action@v3
4848
with:
4949
registry: ghcr.io
5050
username: ${{ github.actor }}
5151
password: ${{ secrets.GITHUB_TOKEN }}
5252

5353
- name: Push image
54-
uses: docker/build-push-action@v2
54+
uses: docker/build-push-action@v6
5555
with:
5656
context: wireguard/implementation
5757
file: wireguard/implementation/docker/Dockerfile

0 commit comments

Comments
 (0)