Skip to content

Commit 0f72ce8

Browse files
authored
Merge pull request #2625 from renner0e/stable-promotion
chore: stable promotion
2 parents 460b283 + 3d7425d commit 0f72ce8

21 files changed

Lines changed: 109 additions & 43 deletions

.github/renovate.json5

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@
6161
// to reach a stable release
6262
"matchBaseBranches": ["stable-f44"],
6363
"enabled": false
64+
},
65+
{
66+
"matchDepNames": [
67+
"github/codeql-action/upload-sarif"
68+
],
69+
"extends": ["schedule:weekly"]
6470
}
6571
]
6672
}

.github/workflows/cherry-pick-to-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
private-key: ${{ secrets.AURORABOT_PRIVATE_KEY }}
2525

2626
- name: Checkout
27-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
27+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2828
with:
2929
persist-credentials: false
3030
# Use the dynamically generated GitHub App token

.github/workflows/generate-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Checkout last 500 commits (for <commits> to work)
34-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
34+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3535
with:
3636
persist-credentials: false
3737
fetch-depth: 500
@@ -65,6 +65,7 @@ jobs:
6565
- name: Create Release
6666
if: contains(fromJson('["stable"]'), matrix.version) && (github.event.schedule == '0 1 * * TUE' || contains(fromJson('["workflow_dispatch", "workflow_call"]'), github.event_name))
6767
env:
68+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6869
TITLE: ${{ steps.generate-release-text.outputs.title }}
6970
TAG: ${{ steps.generate-release-text.outputs.tag }}
7071
BODY_PATH: ./changelog.md

.github/workflows/moderator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
models: read
1919
contents: read
2020
steps:
21-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
21+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2222
with:
2323
persist-credentials: false
2424

.github/workflows/reusable-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
67+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
6868
with:
6969
persist-credentials: false
7070

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
35+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3636
with:
3737
persist-credentials: false
3838

3939
- name: "Run analysis"
40-
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
40+
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
4141
with:
4242
results_file: results.sarif
4343
results_format: sarif
@@ -71,6 +71,6 @@ jobs:
7171
# Upload the results to GitHub's code scanning dashboard (optional).
7272
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7373
- name: "Upload to code-scanning"
74-
uses: github/codeql-action/upload-sarif@7188fc363630916deb702c7fdcf4e481b751f97a # v4
74+
uses: github/codeql-action/upload-sarif@e0647621c2984b5ed2f768cb892365bf2a616ad1 # v4.37.2
7575
with:
7676
sarif_file: results.sarif

.github/workflows/trigger-schedule-stable-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
actions: write
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
18+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
with:
2020
persist-credentials: false
2121

.github/workflows/validate-just.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
22+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2323
with:
2424
persist-credentials: false
2525

.github/workflows/validate-renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
22+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2323
with:
2424
persist-credentials: false
2525

Containerfile.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ RUN --mount=type=tmpfs,dst=/boot \
129129
# /* Everything that can be done offline after things are in place should be done here */
130130
RUN --network=none \
131131
--mount=type=tmpfs,dst=/boot \
132-
--mount=type=tmpfs,dst=/run \
133132
--mount=type=bind,from=ctx,source=/,target=/ctx \
134133
/ctx/build_files/base/16-override-install.sh && \
135134
/ctx/build_files/base/17-cleanup.sh && \
@@ -142,5 +141,4 @@ RUN --network=none \
142141
CMD ["/sbin/init"]
143142

144143
RUN --network=none \
145-
--mount=type=tmpfs,dst=/run \
146-
bootc container lint
144+
bootc container lint --fatal-warnings --no-truncate

0 commit comments

Comments
 (0)