diff --git a/.github/workflows/branch-cicd.yaml b/.github/workflows/branch-cicd.yaml index 50bc42d..f40d238 100644 --- a/.github/workflows/branch-cicd.yaml +++ b/.github/workflows/branch-cicd.yaml @@ -37,19 +37,19 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN}} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} - name: 💵 Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d910903..49d2629 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,10 +39,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup python 3.13 - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: 3.13 diff --git a/.github/workflows/stable-cicd.yaml b/.github/workflows/stable-cicd.yaml index b8cd365..d4f0358 100644 --- a/.github/workflows/stable-cicd.yaml +++ b/.github/workflows/stable-cicd.yaml @@ -48,14 +48,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: 💵 Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/unstable-cicd.yaml b/.github/workflows/unstable-cicd.yaml index 9f324e3..9d8fe7d 100644 --- a/.github/workflows/unstable-cicd.yaml +++ b/.github/workflows/unstable-cicd.yaml @@ -51,14 +51,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN}} - name: 💵 Python Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip # The "key" used to indicate a set of cached files is the operating system runner @@ -81,7 +81,7 @@ jobs: DATACITE_PASSWORD: ${{secrets.DATACITE_PASSWORD}} - name: 🛏️ Upload Coverage - uses: SonarSource/sonarqube-scan-action@v7 + uses: SonarSource/sonarqube-scan-action@v8 env: SONAR_TOKEN: ${{secrets.SONAR_TOKEN}}