Skip to content

Update docker/login-action action to v3.3.0 (release/v0.3) - autoclosed #453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
aef628d
[0.3] Disallow changes to ServiceAccount field on PRTB update rather …
maxsokolovsky Sep 1, 2023
0bb3775
Merge pull request #285 from maxsokolovsky/0.3-disallow-service-accou…
maxsokolovsky Sep 1, 2023
64b4e83
Bump copyright year
tomleb Jan 22, 2024
af66db7
Remove s390x from drone.
KevinJoiner Dec 4, 2023
5fece95
Merge pull request #324 from tomleb/2024-0.3
tomleb Jan 22, 2024
dac2535
Add support for k8s 1.27
tomleb Jan 16, 2024
b280d4d
Merge pull request #319 from tomleb/2.7-k8s-1.27
tomleb Feb 1, 2024
350766b
Bump wrangler
tomleb Feb 2, 2024
8c769fd
Bump go version to 1.20
tomleb Feb 2, 2024
1b63481
Merge pull request #330 from tomleb/go-1-20-v0.3
tomleb Feb 2, 2024
510e891
Change codeowners to new team (#344)
JonCrowther Mar 19, 2024
cf72932
update rke to v1.4.18-rc1
kinarashah May 6, 2024
89c02cf
Merge pull request #370 from kinarashah/v03
MbolotSuse May 7, 2024
3d9699b
[v0.3] s4: Fixes 227 (#391) (#403)
pmatseykanets Jun 18, 2024
9495ef3
[v0.3] s4: Fixes 374 (#407)
raulcabello Jun 18, 2024
2a25f73
Bump bci-micro to 15.6 (#426)
macedogm Aug 30, 2024
3cd09c4
[v0.3] Don't error if external-rules feature flag is not found when e…
pmatseykanets Oct 29, 2024
36ae8ac
[v0.3] Bump dependencies (#530)
pmatseykanets Oct 29, 2024
72bee62
[v0.3] [GHA] Migrate v0.3 to GHA (#385)
ericpromislow Oct 29, 2024
481e700
Update webhook rancher mods to be in sync with rancher/rancher's (#536)
ericpromislow Oct 31, 2024
a0f404b
Update docker/login-action action to v3.3.0
renovate-rancher[bot] Feb 1, 2025
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
267 changes: 0 additions & 267 deletions .drone.yml

This file was deleted.

85 changes: 85 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: CI

on:
push:
branches:
- release/v*
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: CI
strategy:
matrix:
archBox:
- { arch: amd64, vmArch: x64 }
- { arch: arm64, vmArch: arm64 }
runs-on: runs-on,runner=1cpu-linux-${{ matrix.archBox.vmArch }},run-id=${{ github.run_id }}
steps:
- name : Checkout repository
# https://github.com/actions/checkout/releases/tag/v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
# https://github.com/actions/setup-go/releases/tag/v5.0.0
with:
go-version-file: 'go.mod'

- name: Checkout rancher/rancher and build the chart
run: |
mkdir -p "${{ runner.temp}}"
pushd "${{ runner.temp}}"
git clone --depth 1 -b release/v2.7 https://github.com/rancher/rancher.git rancherDir-v2.7
cd rancherDir-v2.7
./scripts/chart/build chart
tar cfz "${{ runner.temp }}/rancher.tgz" -C build/chart/rancher .
popd

- name: install K3d
run: ./.github/workflows/scripts/install-k3d.sh
env:
K3D_VERSION: latest

- name: ci
run: make ci

- name: setup cluster
run: ./.github/workflows/scripts/setup-cluster.sh
env:
CLUSTER_NAME: webhook
K3S_VERSION: v1.26.15-k3s1
ARCH: "${{ matrix.archBox.arch }}"

- name: import image
run: k3d image import dist/rancher-webhook-image.tar -c webhook

- name: start rancher
run: ./.github/workflows/scripts/start-rancher.sh
env:
CHART_PATH: "${{ runner.temp }}/rancher.tgz"
RANCHER_IMAGE_TAG: "v2.7-head"
VERSION: "2.7"

- name: get vars
run: cat dist/image_tag >> $GITHUB_ENV

- name: Run integration tests
run: ./.github/workflows/scripts/integration-test-ci
env:
ARCH: "${{ matrix.archBox.arch }}"
CLUSTER_NAME: webhook
IMAGE_REPO: rancher/webhook
IMAGE_TAG: "${{ env.IMAGE_TAG }}"
Loading
Loading