From 3840ced18c529cee93d9d89298cbebc94d9b827b Mon Sep 17 00:00:00 2001 From: sdarwin Date: Wed, 12 Aug 2026 08:37:43 -0600 Subject: [PATCH] Github Actions: update versions --- .github/workflows/actions-gcp.yaml | 16 ++++++++-------- .github/workflows/actions.yml | 12 ++++++------ .github/workflows/dependency_report.yml | 4 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/actions-gcp.yaml b/.github/workflows/actions-gcp.yaml index a0fddf89b..43fd32f41 100644 --- a/.github/workflows/actions-gcp.yaml +++ b/.github/workflows/actions-gcp.yaml @@ -40,16 +40,16 @@ jobs: steps: - name: Git - Get Sources - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python 3.13 - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: 3.13 - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/base.txt') }} @@ -126,7 +126,7 @@ jobs: echo "BOOST_LATEST_RELEASE=${BOOST_LATEST_RELEASE}" >> "$GITHUB_ENV" - name: Git - Get Sources - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -135,7 +135,7 @@ jobs: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true - name: Set up Python 3.13 - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: 3.13 @@ -166,7 +166,7 @@ jobs: SHORT_SHA: ${{ env.SHORT_SHA }} - name: Login to Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v4 with: registry: ${{ env.DOCKER_REGISTRY }} username: ${{ secrets.GKE_DOCKER_REGISTRY_USERNAME }} @@ -194,13 +194,13 @@ jobs: - name: Deploy to cluster - google auth id: 'auth' - uses: 'google-github-actions/auth@v1' + uses: 'google-github-actions/auth@v3' with: credentials_json: '${{ secrets.GKE_SA_KEY }}' - name: Deploy to cluster - get credentials id: 'get-credentials' - uses: 'google-github-actions/get-gke-credentials@v1' + uses: 'google-github-actions/get-gke-credentials@v3' with: cluster_name: ${{ env.GKE_CLUSTER }} location: ${{ env.GKE_REGION }} diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index f35341365..bb204a332 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -30,16 +30,16 @@ jobs: steps: - name: Git - Get Sources - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Python 3.13 - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: 3.13 - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/base.txt') }} @@ -78,7 +78,7 @@ jobs: steps: - name: Git - Get Sources - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -87,7 +87,7 @@ jobs: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true - name: Set up Python 3.13 - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: 3.13 @@ -105,7 +105,7 @@ jobs: git push --tags - name: Login to REVSYS Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v4 with: registry: registry.revsys.com username: boost diff --git a/.github/workflows/dependency_report.yml b/.github/workflows/dependency_report.yml index 163b9dec0..cc3a3387a 100644 --- a/.github/workflows/dependency_report.yml +++ b/.github/workflows/dependency_report.yml @@ -17,7 +17,7 @@ jobs: chmod +x ./get_deps.sh - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 # fetch all history for all branches and tags repository: boostorg/boost @@ -42,7 +42,7 @@ jobs: $GITHUB_WORKSPACE/get_deps.sh "$GITHUB_WORKSPACE/output.txt" - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: boost-dep-artifact path: output.txt