Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade the makesystem to v0.5.15 #23

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bootstrap/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.14
0.5.15
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -81,15 +81,15 @@ jobs:
run: make github_env_vars >> $GITHUB_ENV

- name: Set up QEMU for Docker
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
with:
buildkitd-flags: ${{ steps.docker_buildkitd_flags.outputs.buildkitd_flags }}

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
if: >-
(
github.event_name != 'pull_request'
Expand All @@ -102,7 +102,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build amd64 Docker image locally
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
load: true
Expand All @@ -116,7 +116,7 @@ jobs:
IMAGE_TAG=${{ env.DOCKERHUB_TEST_TAG }} make test

- name: Build docker images for all platforms (with registry push)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
if: >-
(
github.event_name != 'pull_request'
Expand All @@ -133,7 +133,7 @@ jobs:
allow: ${{ steps.docker_entitlements.outputs.entitlements }}

- name: Build docker images for all platforms (no registry push)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
if: >-
(
github.event_name == 'pull_request'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -43,6 +43,6 @@ jobs:
run: make makesystem_install

- name: Run hadolint
uses: hadolint/hadolint-action@v2.1.0
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
6 changes: 3 additions & 3 deletions .github/workflows/upgrade-makesystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -37,14 +37,14 @@ jobs:
id: dump-makesystem-version
run: make github_dump_makesystem_version

- uses: tibdex/github-app-token@v1
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.UPGRADE_MAKESYSTEM_BOT_APP_ID }}
private_key: ${{ secrets.UPGRADE_MAKESYSTEM_BOT_APP_PRIVATE_KEY }}

- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v5
with:
token: ${{ steps.generate-token.outputs.token }}
commit-message: |
Expand Down