Skip to content

Commit ac26c80

Browse files
deps: update GitHub action dependencies (#3399)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b1cf9bc commit ac26c80

32 files changed

+65
-65
lines changed

.github/actions/publish_helmchart/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
echo version=$(yq eval ".version" ${{ inputs.chartPath }}/Chart.yaml) | tee -a $GITHUB_OUTPUT
3030
3131
- name: Create pull request
32-
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
32+
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
3333
with:
3434
path: helm
3535
branch: "release/s3proxy/${{ steps.update-chart-version.outputs.version }}"

.github/actions/setup_bazel_nix/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ runs:
113113
114114
- name: Install nix
115115
if: steps.check_inputs.outputs.nixPreinstalled == 'false'
116-
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
116+
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
117117

118118
- name: Set $USER if not set
119119
shell: bash

.github/workflows/aws-snp-launchmeasurement.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
run:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -17,7 +17,7 @@ jobs:
1717
path: constellation
1818

1919
- name: Install Nix
20-
uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
20+
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
2121

2222
- name: Download Firmware release
2323
id: download-firmware

.github/workflows/build-ccm-gcp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
find-ccm-versions:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
outputs:
1818
versions: ${{ steps.find-versions.outputs.versions }}
1919
latest: ${{ steps.find-latest.outputs.latest }}
@@ -54,7 +54,7 @@ jobs:
5454
build-ccm-gcp:
5555
# matrix cannot handle empty lists
5656
if: needs.find-ccm-versions.outputs.versions != '[]'
57-
runs-on: ubuntu-22.04
57+
runs-on: ubuntu-24.04
5858
permissions:
5959
contents: read
6060
packages: write

.github/workflows/build-gcp-guest-agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
build-gcp-guest-agent:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
permissions:
1515
contents: read
1616
packages: write

.github/workflows/build-libvirt-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build-container:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
contents: read
1919
packages: write

.github/workflows/build-logcollector-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
build-logcollector-debugd-images:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
permissions:
1818
contents: read
1919
packages: write

.github/workflows/build-os-image-scheduled.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
stream:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
outputs:
1717
stream: ${{ steps.stream.outputs.stream }}
1818
steps:
@@ -56,7 +56,7 @@ jobs:
5656
# On nightly stream only.
5757
if: needs.stream.outputs.stream == 'nightly'
5858
needs: ["build-image", "stream"]
59-
runs-on: ubuntu-22.04
59+
runs-on: ubuntu-24.04
6060
steps:
6161
- name: Checkout
6262
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -97,7 +97,7 @@ jobs:
9797
run: rm -f internal/attestation/measurements/measurement-generator/generate
9898

9999
- name: Create pull request
100-
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
100+
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
101101
with:
102102
branch: "image/automated/update-measurements-${{ github.run_number }}"
103103
base: main
@@ -117,7 +117,7 @@ jobs:
117117
notify-failure:
118118
if: failure()
119119
needs: [ "stream", "build-image", "update-code" ]
120-
runs-on: ubuntu-22.04
120+
runs-on: ubuntu-24.04
121121
steps:
122122
- name: Checkout
123123
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

.github/workflows/build-os-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ on:
4747
jobs:
4848
build-settings:
4949
name: "Determine build settings"
50-
runs-on: ubuntu-22.04
50+
runs-on: ubuntu-24.04
5151
outputs:
5252
ref: ${{ steps.ref.outputs.ref }}
5353
stream: ${{ steps.stream.outputs.stream }}

.github/workflows/check-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ on:
1717

1818
jobs:
1919
linkChecker:
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Checkout
2323
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2424
with:
2525
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
2626

2727
- name: Link Checker
28-
uses: lycheeverse/lychee-action@2b973e86fc7b1f6b36a93795fe2c9c6ae1118621 # v1.10.0
28+
uses: lycheeverse/lychee-action@7da8ec1fc4e01b5a12062ac6c589c10a4ce70d67 # v2.0.0
2929
with:
3030
args: "--config ./.lychee.toml './**/*.md' './**/*.html'"
3131
fail: true

0 commit comments

Comments
 (0)