Skip to content

Commit 62969ce

Browse files
authored
Merge pull request #690 from Yowkees/fix-build-on-gha-689
specifying the exact version of the image
2 parents a088554 + 6857a0b commit 62969ce

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

.github/workflows/build-all.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
check-size:
5151
name: Check size
52-
runs-on: ubuntu-latest
52+
runs-on: ubuntu-22.04
5353
needs:
5454
- build
5555

.github/workflows/build-firmware.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121

2222
name: Build a firmware ${{ inputs.keyboard }}:${{ inputs.keymap }}
2323

24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04
2525
container:
26-
image: ghcr.io/qmk/qmk_cli:latest
26+
image: ghcr.io/qmk/qmk_cli@sha256:16c4916e95b99bf88d27b15aec8db409ee17265d1710287fde248c6666508966
2727

2828
steps:
2929

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
deploy:
1515
name: Deploy firmwares
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
needs:
1818
- build
1919

0 commit comments

Comments
 (0)