Skip to content
This repository has been archived by the owner on Dec 16, 2024. It is now read-only.

Bump the ci group with 9 updates #149

Merged
merged 1 commit into from
Nov 27, 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
4 changes: 2 additions & 2 deletions .github/workflows/build_podinfo_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup OCM
uses: open-component-model/ocm-setup-action@main

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,43 +32,43 @@ jobs:
steps:
- run: curl -s https://fluxcd.io/install.sh | sudo bash
- name: Checkout mpas repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
path: MPAS

- name: Checkout ocm-controller
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-component-model/ocm-controller
path: ocm-controller

- name: Checkout mpas-project-controller
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-component-model/mpas-project-controller
path: mpas-project-controller

- name: Checkout mpas-product-controller
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-component-model/mpas-product-controller
path: mpas-product-controller

- name: Checkout replication-controller
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-component-model/replication-controller
path: replication-controller

- name: Checkout git-controller
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: open-component-model/git-controller
path: git-controller

- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: '${{ github.workspace }}/MPAS/go.mod'
- name: Restore Go cache
Expand All @@ -79,10 +79,10 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Setup Kubernetes
uses: helm/kind-action@v1.5.0
uses: helm/kind-action@v1.8.0
with:
install_only: true
- uses: yokawasa/action-setup-kube-tools@v0.9.2
- uses: yokawasa/action-setup-kube-tools@v0.9.3
with:
kustomize: '5.0.1'
tilt: '0.32.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout mpas repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Restore Go cache
uses: actions/cache@v3
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.OCMBOT_APP_ID }}
private_key: ${{ secrets.OCMBOT_PRIV_KEY }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Unshallow
run: git fetch --prune --unshallow
- name: Setup Go
Expand All @@ -42,10 +42,10 @@ jobs:
go-version-file: '${{ github.workspace }}/go.mod'
cache: false
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Setup Syft
uses: anchore/sbom-action/download-syft@v0
- name: Setup Cosign
Expand All @@ -64,7 +64,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
id: run-goreleaser
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --release-notes=output/notes.md --skip-validate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
go-version: '>=1.20.0'
- name: Checkout mpas repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build Bootstrap
run: |
BOOTSTRAP_RELEASE_VERSION=${{ github.event.inputs.version }} make build-release-bootstrap-component
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Restore Go cache
uses: actions/cache@v3
with:
Expand Down
Loading