Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: "🔧 Login to GitHub Container Registry"
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-bazel-caches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
runner: [1, 2, 3, 4] # We currently have 4 runners, adjust this number if more runners are added
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: "🚀 Building"
run: |
docker build -t ghcr.io/dfinity/dre/ic-management-frontend:$GITHUB_SHA -f dashboard/Dockerfile dashboard
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/dre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
labels: dre-runner-custom
container: ghcr.io/dfinity/dre/actions-runner:6413f2909a49329ecbf5371ee7ddf07a9799b625
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: "☁️ Setup runner"
uses: ./.github/workflows/manage-runner-pre
Expand All @@ -31,7 +31,7 @@ jobs:
needs: [test]
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
cargo build --release -p dre --target aarch64-apple-darwin

- name: Upload macOS aarch64 artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: dre-aarch64-apple-darwin
path: target/aarch64-apple-darwin/release/dre
Expand All @@ -90,7 +90,7 @@ jobs:
cargo build --release -p dre --target x86_64-apple-darwin

- name: Upload macOS x86_64 artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: dre-x86_64-apple-darwin
path: target/x86_64-apple-darwin/release/dre
Expand All @@ -106,7 +106,7 @@ jobs:
packages: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
cp --dereference bazel-out/k8-opt/bin/rs/cli/dre release/artifacts/dre-x86_64-unknown-linux

- name: Download macOS x86_64 artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: dre-x86_64-apple-darwin
path: release/artifacts/
Expand All @@ -161,7 +161,7 @@ jobs:
run: mv release/artifacts/dre release/artifacts/dre-x86_64-apple-darwin

- name: Download macOS aarch64 artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: dre-aarch64-apple-darwin
path: release/artifacts/
Expand All @@ -177,7 +177,7 @@ jobs:

- name: "🆕 📢 Prepare release"
# v0.1.15
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -195,7 +195,7 @@ jobs:
rm -rf release

- name: "🆕 Create a new Pull Request with the changes"
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
commit-message: "chore(release): New release of `dre` version ${{ steps.tag.outputs.tag }}"
branch: bot-release-${{ steps.tag.outputs.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
packages: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

- name: "🧪 Upload test artifacts"
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: test-artifacts
path: bazel-out/k8-opt/bin/rs/ic-observability/multiservice-discovery/multiservice-discovery
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/msd-diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
# This image is based on ubuntu:20.04
container: ghcr.io/dfinity/dre/actions-runner:6413f2909a49329ecbf5371ee7ddf07a9799b625
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: "🔧 Setup runner"
uses: ./.github/workflows/manage-runner-pre

- name: "📥 Download main test artifact"
uses: dawidd6/action-download-artifact@v11
uses: dawidd6/action-download-artifact@v12
with:
name: test-artifacts
branch: main
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
echo "targets_main=$TARGETS_DIR_MAIN" >> $GITHUB_OUTPUT
echo "targets_branch=$TARGETS_DIR_BRANCH" >> $GITHUB_OUTPUT
- name: "Check MSD Diff"
uses: "int128/diff-action@v1"
uses: "int128/diff-action@v2"
with:
base: ${{ steps.msd-diff.outputs.targets_main }}
head: ${{ steps.msd-diff.outputs.targets_branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
packages: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
container: ghcr.io/dfinity/dre/actions-runner:6413f2909a49329ecbf5371ee7ddf07a9799b625
name: Check changed release index files
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Run checks for release index
run: |
rye sync
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/required-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Wait for running jobs
uses: lewagon/wait-on-check-action@v1.3.4
uses: lewagon/wait-on-check-action@v1.4.1
with:
ref: ${{ github.ref }}
running-workflow-name: Wait for required jobs to complete or be skipped
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trusted-neurons-alerts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
packages: write
pages: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
app-id: ${{ vars.PR_AUTOMATION_BOT_PUBLIC_APP_ID }}
private-key: ${{ secrets.PR_AUTOMATION_BOT_PUBLIC_PRIVATE_KEY }}
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: "🔧 Setup runner"
uses: ./.github/workflows/manage-runner-pre

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
./bin/release-controller-update-data-model.sh

- name: "🆕 Create a new Pull Request with the changes"
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
commit-message: "chore(deps): Update dependencies"
branch: bot-update-deps
Expand Down
Loading