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
16 changes: 8 additions & 8 deletions .github/workflows/actions-gcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

steps:
- name: Git - Get Sources
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -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

Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependency_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading