Skip to content

Commit 9993851

Browse files
Bump the all group with 4 updates (#2)
* 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> * fixes permissions for pushing docker image Set GITHUB_TOKEN permissions for Docker image push. * fixes permissions for pushing docker image Added permissions for Docker image pushing. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Linard Arquint <ArquintL@users.noreply.github.com>
1 parent 9e637bd commit 9993851

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

.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: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ jobs:
77
build-verify:
88
runs-on: ubuntu-latest
99
timeout-minutes: 20
10+
# set per-job GITHUB_TOKEN permissions such that pushing the Docker image will be possible:
11+
permissions:
12+
packages: write
1013
steps:
1114
- name: Create Image ID
1215
run: |
1316
REPO_OWNER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
1417
echo "IMAGE_ID=ghcr.io/$REPO_OWNER/protocol-verification-refinement-tamarin" >> $GITHUB_ENV
1518
1619
- name: Checkout repo
17-
uses: actions/checkout@v2
20+
uses: actions/checkout@v5
1821

1922
- name: Image version
2023
run: |
@@ -23,10 +26,10 @@ jobs:
2326
echo "IMAGE_TAG=${{ env.IMAGE_ID }}:$VERSION" >> $GITHUB_ENV
2427
2528
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v1
29+
uses: docker/setup-buildx-action@v3
2730

2831
- name: Build image
29-
uses: docker/build-push-action@v2
32+
uses: docker/build-push-action@v6
3033
with:
3134
context: .
3235
load: true
@@ -44,14 +47,14 @@ jobs:
4447
run: docker run ${{ env.IMAGE_TAG }} ./verify-wireguard.sh
4548

4649
- name: Login to Github Packages
47-
uses: docker/login-action@v1
50+
uses: docker/login-action@v3
4851
with:
4952
registry: ghcr.io
5053
username: ${{ github.actor }}
5154
password: ${{ secrets.GITHUB_TOKEN }}
5255

5356
- name: Push image
54-
uses: docker/build-push-action@v2
57+
uses: docker/build-push-action@v6
5558
with:
5659
context: .
5760
file: tamarin-docker/Dockerfile

.github/workflows/wireguard-code.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ jobs:
77
build-verify:
88
runs-on: ubuntu-latest
99
timeout-minutes: 15
10+
# set per-job GITHUB_TOKEN permissions such that pushing the Docker image will be possible:
11+
permissions:
12+
packages: write
1013
steps:
1114
- name: Create Image ID
1215
run: |
1316
REPO_OWNER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
1417
echo "IMAGE_ID=ghcr.io/$REPO_OWNER/protocol-verification-refinement-wireguard" >> $GITHUB_ENV
1518
1619
- name: Checkout repo
17-
uses: actions/checkout@v2
20+
uses: actions/checkout@v5
1821

1922
- name: Image version
2023
run: |
@@ -23,10 +26,10 @@ jobs:
2326
echo "IMAGE_TAG=${{ env.IMAGE_ID }}:$VERSION" >> $GITHUB_ENV
2427
2528
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v1
29+
uses: docker/setup-buildx-action@v3
2730

2831
- name: Build image
29-
uses: docker/build-push-action@v2
32+
uses: docker/build-push-action@v6
3033
with:
3134
context: wireguard/implementation
3235
load: true
@@ -44,14 +47,14 @@ jobs:
4447
run: docker run ${{ env.IMAGE_TAG }} ./test.sh
4548

4649
- name: Login to Github Packages
47-
uses: docker/login-action@v1
50+
uses: docker/login-action@v3
4851
with:
4952
registry: ghcr.io
5053
username: ${{ github.actor }}
5154
password: ${{ secrets.GITHUB_TOKEN }}
5255

5356
- name: Push image
54-
uses: docker/build-push-action@v2
57+
uses: docker/build-push-action@v6
5558
with:
5659
context: wireguard/implementation
5760
file: wireguard/implementation/docker/Dockerfile

0 commit comments

Comments
 (0)