Skip to content

Commit

Permalink
chore(deps): update all github action dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <bot@renovateapp.com>
  • Loading branch information
renovate-bot committed Jun 13, 2023
1 parent 7017fc3 commit f4f48ea
Show file tree
Hide file tree
Showing 14 changed files with 64 additions and 64 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-clang-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
steps:
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7
with:
platforms: amd64,arm64

# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
uses: docker/setup-buildx-action@bdd549bec0b79f87fdf6064e966f34404a39cc33

- name: Login to quay.io
if: github.event_name == 'push'
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: quay.io
username: ${{ secrets.QUAY_CLANG_RELEASE_USERNAME }}
Expand All @@ -54,13 +54,13 @@ jobs:
fi
- name: Checkout Source Code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
persist-credentials: false
fetch-depth: 0

- name: Release Build clang
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf
id: docker_build_release
with:
provenance: false
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Install Cosign
if: github.event_name == 'push'
uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b
uses: sigstore/cosign-installer@ef0e9691595ea19ec990a46b1a591dcafe568f34

- name: Sign Container Image
if: github.event_name == 'push' && steps.tag-in-repositories.outputs.exists == 'false'
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
# Upload artifact digests
- name: Upload artifact digests
if: github.event_name == 'push'
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
with:
name: image-digest clang
path: image-digest
Expand All @@ -149,7 +149,7 @@ jobs:
mkdir -p image-digest/
- name: Download digests of all images built
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
with:
path: image-digest/

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d
uses: peaceiris/actions-hugo@31c46541ceabb0656cd9e943914ab1701da3e788
with:
hugo-version: '0.111.2'
extended: true

- name: Setup Node
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
uses: actions/setup-node@869f4dd0c7f320ae834c2724d92a364de3893c24
with:
node-version: '18'
cache: 'npm'
Expand Down Expand Up @@ -74,5 +74,5 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@0243b6c10d06cb8e95ed8ee471231877621202c0
uses: actions/deploy-pages@80d8f1cab899205a145dbe8a3d9b3ba795b4554a

18 changes: 9 additions & 9 deletions .github/workflows/build-images-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
steps:
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7
with:
platforms: arm64

# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
uses: docker/setup-buildx-action@bdd549bec0b79f87fdf6064e966f34404a39cc33

- name: Login to quay.io for CI
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME_CI }}
Expand All @@ -60,7 +60,7 @@ jobs:
fi
- name: Checkout Source Code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
persist-credentials: false
ref: ${{ steps.tag.outputs.tag }}
Expand All @@ -71,7 +71,7 @@ jobs:
echo "TETRAGON_VERSION=$(make version)" >> $GITHUB_ENV
- name: Install Cosign
uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b
uses: sigstore/cosign-installer@ef0e9691595ea19ec990a46b1a591dcafe568f34

- name: Install Bom
shell: bash
Expand All @@ -83,7 +83,7 @@ jobs:
# main branch pushes
- name: CI Build (main)
if: github.event_name == 'push'
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf
id: docker_build_ci_main
with:
provenance: false
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
# PR updates
- name: CI Build (PR)
if: github.event_name == 'pull_request_target' || github.event_name == 'pull_request'
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf
id: docker_build_ci_pr
with:
provenance: false
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
# Upload artifact digests
- name: Upload artifact digests
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
with:
name: image-digest ${{ matrix.name }}
path: image-digest
Expand All @@ -209,7 +209,7 @@ jobs:
mkdir -p image-digest/
- name: Download digests of all images built
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
with:
path: image-digest/

Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/build-images-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
steps:
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7
with:
platforms: arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4b4e9c3e2d4531116a6f8ba8e71fc6e2cb6e6c8c
uses: docker/setup-buildx-action@bdd549bec0b79f87fdf6064e966f34404a39cc33

- name: Login to quay.io
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME_RELEASE_USERNAME }}
Expand All @@ -50,7 +50,7 @@ jobs:
echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Checkout Source Code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
persist-credentials: false
fetch-depth: 0
Expand All @@ -60,7 +60,7 @@ jobs:
echo "TETRAGON_VERSION=$(make version)" >> $GITHUB_ENV
- name: Release Build ${{ matrix.name }}
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@44ea916f6c540f9302d50c2b1e5a8dc071f15cdf
id: docker_build_release
with:
provenance: false
Expand All @@ -77,7 +77,7 @@ jobs:
- name: Install Cosign
if: ${{ startsWith(steps.tag.outputs.tag, 'v') }}
uses: sigstore/cosign-installer@9becc617647dfa20ae7b1151972e9b3a2c338a2b
uses: sigstore/cosign-installer@ef0e9691595ea19ec990a46b1a591dcafe568f34

- name: Sign Container Image
if: ${{ startsWith(steps.tag.outputs.tag, 'v') }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
# Upload artifact digests
- name: Upload artifact digests
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
with:
name: image-digest ${{ matrix.name }}
path: image-digest
Expand All @@ -158,7 +158,7 @@ jobs:
mkdir -p image-digest/
- name: Download digests of all images built
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a
uses: actions/download-artifact@e9ef242655d12993efdcda9058dee2db83a2cb9b
with:
path: image-digest/

Expand All @@ -175,10 +175,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5

- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd

- name: Generate tetra CLI artifacts
run: make cli-release
Expand All @@ -188,7 +188,7 @@ jobs:

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-links-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Links Checker
id: lychee
uses: lycheeverse/lychee-action@9ace499fe66cee282a29eaa628fdac2c72fa087f
uses: lycheeverse/lychee-action@0c01f23b50bccfaccc70def2069821414552b32c
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Create or update issue with report
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f
uses: peter-evans/create-issue-from-file@c217d8ec015895bcd9e96d7932c6ffdee443a8bf
with:
title: ${{ env.ISSUE_NAME }}
content-filepath: ./lychee/out.md
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-links-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d
uses: peaceiris/actions-hugo@31c46541ceabb0656cd9e943914ab1701da3e788
with:
hugo-version: '0.111.2'
extended: true
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Links Checker
id: lychee
uses: lycheeverse/lychee-action@9ace499fe66cee282a29eaa628fdac2c72fa087f
uses: lycheeverse/lychee-action@0c01f23b50bccfaccc70def2069821414552b32c
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkpatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
checkpatch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
fetch-depth: 0
- name: Run checkpatch.pl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generated-files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
generated-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd
with:
go-version: '1.19.6'
- name: Validate that generated files are up to date.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: Install Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
uses: actions/setup-go@992f0689006f912ae66668969f1fa6618fc53ebd
with:
go-version: '1.18.3'

- name: Checkout code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
path: go/src/github.com/cilium/tetragon/

Expand Down Expand Up @@ -58,15 +58,15 @@ jobs:
- name: Upload Tetragon logs
if: failure()
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
with:
name: tetragon-json
path: /tmp/tetragon.gotest*
retention-days: 5

- name: Upload bugtool dumps
if: failure()
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
uses: actions/upload-artifact@65d862660abb392b8c4a3d1195a2108db131dd05
with:
name: tetragon-bugtool
path: /tmp/tetragon-bugtool*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
steps:
- name: Checkout code
if: ${{ !github.event.pull_request }}
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
persist-credentials: false
- name: Check code changes
uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50
uses: dorny/paths-filter@4067d885736b84de7c414f582ac45897079b0a78
id: go-changes
with:
base: ${{ github.event.pull_request.base.sha }}
Expand All @@ -50,13 +50,13 @@ jobs:
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
with:
persist-credentials: false
fetch-depth: 1
- name: Initialize CodeQL
uses: github/codeql-action/init@d186a2a36cc67bfa1b860e6170d37fb9634742c7
uses: github/codeql-action/init@543e4689d027f45e1052dd9ebda365d7e491fbf5
with:
languages: go
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@d186a2a36cc67bfa1b860e6170d37fb9634742c7
uses: github/codeql-action/analyze@543e4689d027f45e1052dd9ebda365d7e491fbf5
2 changes: 1 addition & 1 deletion .github/workflows/lint-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
generated-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- uses: actions/checkout@96f53100ba2a5449eb71d2e6604bbcd94b9449b5
- name: Run install/kubernetes/test.sh
run: |
cd install/kubernetes && ./test.sh
Expand Down

0 comments on commit f4f48ea

Please sign in to comment.