Skip to content

Commit 5314d70

Browse files
Merge pull request #295 from google-deepmind:dependabot/github_actions/github-actions-5a160e2e9d
PiperOrigin-RevId: 742758281 Change-Id: Ie16686e6507c8569fbdbacd161496a38d032b22a
2 parents 2b1b8a6 + 8229502 commit 5314d70

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/actions/install/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
steps:
1818
- name: Set up Python ${{ inputs.python-version }}
1919
id: setup-python
20-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
20+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
2121
with:
2222
python-version: ${{ inputs.python-version }}
2323

@@ -38,7 +38,7 @@ runs:
3838
3939
- name: Restore installation
4040
id: restore
41-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf
41+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
4242
with:
4343
path: |
4444
meltingpot/assets
@@ -79,7 +79,7 @@ runs:
7979
8080
- name: Save installation
8181
if: steps.restore.outputs.cache-hit != 'true'
82-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf
82+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684
8383
with:
8484
path: |
8585
meltingpot/assets

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
35+
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841
3636
with:
3737
languages: ${{ matrix.language }}
3838
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -46,7 +46,7 @@ jobs:
4646
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4747
# If this step fails, then you should remove it and run the build manually (see below)
4848
- name: Autobuild
49-
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
49+
uses: github/codeql-action/autobuild@1b549b9259bda1cb5ddde3b41741a82a2d15a841
5050

5151
# ℹ️ Command-line programs to run using the OS shell.
5252
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -59,4 +59,4 @@ jobs:
5959
# ./location_of_script_within_repo/buildscript.sh
6060

6161
- name: Perform CodeQL Analysis
62-
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
62+
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841

.github/workflows/pypi-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
done
4646
ls dist/*
4747
- name: Save artifact
48-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
48+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
4949
with:
5050
name: dist
5151
path: ./dist
@@ -74,12 +74,12 @@ jobs:
7474
- '3.13'
7575
steps:
7676
- name: Load artifact
77-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
77+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e
7878
with:
7979
name: dist
8080
path: ./dist
8181
- name: Set up Python
82-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
82+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
8383
with:
8484
python-version: ${{ matrix.python-version }}
8585
- name: Install Python dependencies
@@ -108,7 +108,7 @@ jobs:
108108
timeout-minutes: 10
109109
steps:
110110
- name: Load artifact
111-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806
111+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e
112112
with:
113113
name: dist
114114
path: ./dist

.github/workflows/pypi-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: Set up Python ${{ matrix.python_version }}
56-
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
56+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
5757
with:
5858
python-version: ${{ matrix.python-version }}
5959

.github/workflows/scorecards-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5050
# format to the repository Actions tab.
5151
- name: "Upload artifact"
52-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
52+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
5353
with:
5454
name: SARIF file
5555
path: results.sarif
5656
retention-days: 5
5757

5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d
60+
uses: github/codeql-action/upload-sarif@1b549b9259bda1cb5ddde3b41741a82a2d15a841
6161
with:
6262
sarif_file: results.sarif

0 commit comments

Comments
 (0)